:root {
  --blue-900: #0a2d4a;
  --blue-800: #0d3b66;
  --blue-700: #145a8a;
  --blue-600: #1a6fa8;
  --blue-500: #2382bc;
  --blue-400: #3da0d9;
  --blue-100: #e8f2f8;
  --blue-50: #f4f9fc;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-50: #ecfdf9;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-50: #f0fdf4;
  --gray-900: #1a1f24;
  --gray-700: #3d4852;
  --gray-600: #556270;
  --gray-500: #6b7785;
  --gray-300: #c5cdd6;
  --gray-200: #e3e8ed;
  --gray-100: #f0f3f6;
  --white: #ffffff;
  --success: #1a7f4b;
  --warning: #9a6700;
  --danger: #b42318;
  --shadow-sm: 0 1px 3px rgba(10, 45, 74, 0.07);
  --shadow-md: 0 4px 16px rgba(13, 59, 102, 0.1);
  --radius: 10px;
  --radius-lg: 12px;
  --header-h: 56px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  --surface: #edf2f8;
  --hero-bg: linear-gradient(155deg, #082f4d 0%, #0f5480 48%, #127a8a 100%);
  --hero-accent: linear-gradient(90deg, var(--blue-500), var(--teal-500));
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-900);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-picker {
  position: relative;
}

.lang-picker-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-800);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.lang-picker-btn:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

.lang-picker-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-picker-code {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.lang-picker-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 120;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.lang-picker-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-800);
  cursor: pointer;
}

.lang-picker-option:hover {
  background: var(--blue-50);
}

.lang-picker-option.is-active {
  background: linear-gradient(90deg, var(--blue-50), var(--teal-50));
  font-weight: 700;
  color: var(--blue-900);
}

.lang-picker-option-flag {
  font-size: 20px;
  line-height: 1;
}

.lang-picker-option-label {
  flex: 1;
}

.header-nav {
  display: none;
}

.header-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  padding: 6px 0;
}

.header-nav a:hover {
  color: var(--blue-700);
  text-decoration: none;
}

/* Main */
.site-main {
  flex: 1;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.container-narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  min-height: 44px;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-600) 0%, var(--blue-800) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(13, 59, 102, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, var(--blue-500) 0%, var(--blue-700) 100%);
  text-decoration: none;
  color: var(--white);
}

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-800);
  border: 1px solid var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-100);
  text-decoration: none;
  color: var(--blue-800);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: var(--white);
}

/* Hero */
.hero {
  background: var(--hero-bg);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--hero-accent);
}


.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-actions .btn-primary {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-actions .btn-primary:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.trust-item:nth-child(1) .trust-icon {
  background: var(--blue-50);
  border-color: #b8d4e8;
}

.trust-item:nth-child(1) .trust-icon svg { stroke: var(--blue-600); }

.trust-item:nth-child(2) .trust-icon {
  background: var(--teal-50);
  border-color: #99f0e6;
}

.trust-item:nth-child(2) .trust-icon svg { stroke: var(--teal-600); }

.trust-item:nth-child(3) .trust-icon {
  background: var(--green-50);
  border-color: #bbf7d0;
}

.trust-item:nth-child(3) .trust-icon svg { stroke: var(--green-600); }

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-700);
  fill: none;
  stroke-width: 1.75;
}

.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 40px 0;
  background: var(--surface);
}

.section--white {
  background: var(--white);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.section-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 16px 16px 52px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-card[data-step="1"] { border-left: 4px solid var(--blue-600); }
.step-card[data-step="2"] { border-left: 4px solid var(--teal-500); }
.step-card[data-step="3"] { border-left: 4px solid var(--green-600); }

.step-card::before {
  content: attr(data-step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 26px;
  height: 26px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.step-card[data-step="1"]::before { background: var(--blue-700); }
.step-card[data-step="2"]::before { background: var(--teal-600); }
.step-card[data-step="3"]::before { background: var(--green-600); }

.step-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.step-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card + .card {
  margin-top: 16px;
}

/* Forms */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-label-hint {
  font-weight: 400;
  color: var(--gray-500);
}

.form-input {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 16px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(26, 111, 168, 0.15);
}

.form-input.error {
  border-color: var(--danger);
}

.form-error {
  font-size: 12px;
  color: var(--danger);
  margin-top: 5px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-note {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 6px;
  line-height: 1.45;
}

/* Date picker */
.date-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.date-quick-btn {
  padding: 11px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  min-height: 44px;
  transition: border-color 0.15s, background 0.15s;
}

.date-quick-btn.active {
  border-color: var(--blue-600);
  background: var(--blue-50);
  color: var(--blue-800);
  font-weight: 600;
}

.date-other-toggle {
  display: block;
  width: 100%;
  padding: 10px;
  border: none;
  background: none;
  font-size: 13px;
  color: var(--blue-700);
  cursor: pointer;
  text-align: center;
  text-decoration: underline;
}

.date-other-wrap {
  display: none;
  margin-top: 8px;
}

.date-other-wrap.open {
  display: block;
}

/* Page header */
.page-header {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-100);
}

.page-header h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.page-header p {
  font-size: 14px;
  color: var(--gray-500);
}

/* Legal notice */
.legal-notice {
  background: #991b1b;
  border-top: 3px solid #7f1d1d;
  padding: 18px 0;
}

.legal-notice-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.legal-notice-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.legal-notice-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fecaca;
  margin-top: 1px;
}

.legal-notice h2 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.4;
}

.legal-notice p {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.legal-notice-body {
  margin-bottom: 10px;
}

.legal-notice-contact {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.legal-notice-contact a {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-notice-contact a:hover {
  color: #fecaca;
}

/* Footer */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.75);
  margin-top: auto;
}

.footer-main {
  padding: 28px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.55;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 6px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

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

.breadcrumb span {
  margin: 0 6px;
}

/* Alert */
.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.alert-info {
  background: var(--blue-50);
  border: 1px solid rgba(26, 111, 168, 0.2);
  color: var(--blue-800);
}

.alert-warning {
  background: #fef9ec;
  border: 1px solid rgba(154, 103, 0, 0.25);
  color: var(--warning);
}

.alert-danger {
  background: #fef3f2;
  border: 1px solid rgba(180, 35, 24, 0.2);
  color: var(--danger);
}

/* Save page notice — compact */
.save-page-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--amber-50);
  border: 1px solid #fcd34d;
  border-left: 4px solid var(--amber-500);
  border-radius: var(--radius);
  padding: 11px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: #92400e;
}

.save-page-notice-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--amber-600);
}

.save-page-notice-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.save-page-notice-text {
  margin: 0;
}

/* ── Home page sections ── */

.hero-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 14px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-facts {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  position: relative;
  z-index: 1;
}

.hero-facts ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-facts strong {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-facts span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 8px 4px;
}

.stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-800);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  line-height: 1.35;
}

.about-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.about-lead {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.5;
  margin-bottom: 12px;
}

.about-copy p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 12px;
}

.company-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
}

.company-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-800);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.company-dl {
  display: grid;
  gap: 10px;
}

.company-dl div {
  display: grid;
  gap: 2px;
}

.company-dl dt {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray-500);
}

.company-dl dd {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.45;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.coverage-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--blue-600);
}

.coverage-card:nth-child(2) { border-top-color: var(--teal-500); }
.coverage-card:nth-child(3) { border-top-color: var(--green-600); }
.coverage-card:nth-child(4) { border-top-color: var(--amber-500); }

.coverage-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.coverage-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.cred-bar {
  background: linear-gradient(90deg, var(--blue-800), #145a8a);
  padding: 14px 0;
}

.cred-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.cred-list li {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding-left: 18px;
  position: relative;
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin: 0;
}

.review-card p {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 12px;
}

.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.review-card cite {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  font-style: normal;
}

.review-stars {
  font-size: 13px;
  color: var(--amber-500);
  letter-spacing: 1px;
}

.reviews-note {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.45;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--blue-600);
}

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

.faq-item p {
  padding: 0 16px 14px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.cta-band {
  background: var(--hero-bg);
  color: var(--white);
  padding: 32px 0;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--hero-accent);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cta-band h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.btn-cta {
  background: var(--white);
  color: var(--blue-800);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
}

.btn-cta:hover {
  background: var(--blue-50);
  color: var(--blue-900);
}

.footer-legal-line {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  line-height: 1.45;
}

.footer-contact-block {
  margin-top: 20px;
}

/* Desktop */
@media (min-width: 640px) {
  .hero {
    padding: 48px 0 56px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: center;
  }

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

  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
  }

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

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

  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 180px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .btn {
    width: auto;
  }

  .btn-block-sm {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
    gap: 20px;
  }

  .logo-link img {
    height: 40px;
  }
}
