:root {
  --primary: #0757a8;
  --primary-dark: #053f80;
  --primary-soft: #e8f3ff;
  --accent: #08a4a7;
  --accent-dark: #067d80;
  --orange: #ff8a3d;
  --success: #0bb36a;
  --ink: #0e1a2b;
  --text: #4c5a6d;
  --muted: #748196;
  --line: rgba(14, 26, 43, 0.12);
  --soft: #f5f9ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 87, 168, 0.14);
  --shadow-soft: 0 14px 38px rgba(14, 26, 43, 0.08);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 92px 0;
}

.top-alert {
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: #dffbff;
  background: linear-gradient(90deg, var(--primary-dark), #07315f 55%, #062b48);
  font-size: 14px;
  text-align: center;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 rgba(11, 179, 106, 0.55);
  animation: pulse 1.4s infinite;
  flex: 0 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(14, 26, 43, 0.08);
  backdrop-filter: blur(18px);
  overflow: visible;
}

.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  overflow: visible;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  overflow: visible;
}

.brand {
  height: 52px;
  flex-shrink: 0;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transform: scale(1.45);
  transform-origin: left center;
}

.brand-text {
  font-size: 20px;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #435166;
  font-weight: 700;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-width: 176px;
  padding: 11px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(7, 87, 168, 0.2);
  font-size: 12px;
  line-height: 1.18;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-call strong {
  font-size: 16px;
  letter-spacing: -0.01em;
}

.header-call:hover,
.primary-btn:hover,
.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(7, 87, 168, 0.26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--primary-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 126px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(8, 164, 167, 0.18), transparent 38%),
    radial-gradient(circle at right 15%, rgba(7, 87, 168, 0.16), transparent 38%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.75;
  pointer-events: none;
}

.shape-one {
  width: 240px;
  height: 240px;
  right: -80px;
  top: 120px;
  background: rgba(255, 138, 61, 0.16);
}

.shape-two {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 80px;
  background: rgba(8, 164, 167, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid rgba(7, 87, 168, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  color: var(--white);
  background: var(--accent);
  border-radius: 999px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin: 24px 0 20px;
  font-size: clamp(44px, 6.1vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(17px, 1.65vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.secondary-btn,
.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(7, 87, 168, 0.2);
}

.primary-btn small {
  display: block;
  font-size: 13px;
  opacity: 0.88;
  line-height: 1.2;
}

.primary-btn.small {
  min-height: 52px;
  padding: 13px 20px;
}

.btn-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.secondary-btn {
  color: var(--primary);
  background: var(--white);
  border: 1px solid rgba(7, 87, 168, 0.15);
  box-shadow: 0 12px 30px rgba(14, 26, 43, 0.06);
}

.secondary-btn:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

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

.trust-row div {
  padding: 16px;
  border: 1px solid rgba(14, 26, 43, 0.09);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 28px rgba(14, 26, 43, 0.04);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 15px;
}

.trust-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(7, 87, 168, 0.15);
  border-radius: 23px;
  pointer-events: none;
}

.card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.status-pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.status-pill {
  color: #076d45;
  background: #e9fff5;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

.mini-badge {
  color: var(--primary);
  background: var(--primary-soft);
}

.phone-panel {
  position: relative;
  z-index: 1;
  padding: 28px 18px;
  text-align: center;
  border-radius: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 38%),
    linear-gradient(135deg, #053f80, #0757a8 45%, #08a4a7);
  overflow: hidden;
}

.phone-panel p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.big-number {
  display: block;
  margin: 0 auto 8px;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.phone-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.check-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #425066;
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
}

.notice-box {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid rgba(255, 138, 61, 0.22);
  border-radius: 18px;
  background: #fff6ef;
}

.notice-box strong {
  display: block;
  margin-bottom: 5px;
}

.notice-box p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
}

.service-strip {
  padding: 18px 0;
  background: #062b48;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.strip-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px;
  color: #e8f7ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-kicker {
  margin-bottom: 16px;
}

.section-kicker.light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.section-heading h2,
.cta-band h2,
.why-copy h2,
.faq-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p,
.why-copy p,
.faq-intro p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 17px;
}

.services-section,
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

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

.service-card,
.process-card,
.why-list,
.faq-intro,
.accordion {
  border: 1px solid rgba(14, 26, 43, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  padding: 28px;
  min-height: 248px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 87, 168, 0.2);
  box-shadow: 0 26px 58px rgba(7, 87, 168, 0.12);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--primary-soft);
  font-size: 26px;
}

.service-card h3,
.process-card h3,
.why-item h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.service-card p,
.process-card p,
.why-item p {
  margin-bottom: 0;
  color: var(--text);
}

.highlight-card {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, var(--primary-dark), var(--primary) 55%, var(--accent));
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.82);
}

.highlight-card .service-icon {
  background: rgba(255, 255, 255, 0.16);
}

.inline-call {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--white);
  font-weight: 900;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background:
    radial-gradient(circle at left, rgba(8, 164, 167, 0.48), transparent 28%),
    linear-gradient(135deg, #062b48, #0757a8 58%, #08a4a7);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.white-btn {
  min-width: 240px;
  color: var(--primary);
  background: var(--white);
  flex-direction: column;
  gap: 2px;
  line-height: 1.15;
}

.white-btn strong {
  color: var(--ink);
  font-size: 20px;
}

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

.process-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.process-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.why-section {
  background:
    radial-gradient(circle at top left, rgba(7, 87, 168, 0.1), transparent 34%),
    #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 44px;
}

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

.stats-row div {
  padding: 18px;
  border: 1px solid rgba(7, 87, 168, 0.1);
  border-radius: 18px;
  background: #f7fbff;
}

.stats-row strong,
.stats-row span {
  display: block;
}

.stats-row strong {
  color: var(--primary);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stats-row span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.why-list {
  padding: 24px;
}

.why-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
}

.why-item + .why-item {
  border-top: 1px solid var(--line);
}

.why-item span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--success), var(--accent));
  border-radius: 50%;
  font-weight: 950;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.faq-intro,
.accordion {
  padding: 28px;
}

.faq-intro .primary-btn {
  margin-top: 24px;
}

.accordion-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion-item:first-child {
  padding-top: 0;
}

.accordion-item i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
  font-style: normal;
  flex: 0 0 auto;
}

.accordion-panel {
  display: none;
  padding: 0 0 18px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}

.accordion-panel.open {
  display: block;
}

.accordion-panel p {
  margin: 0;
}

.site-footer {
  padding: 62px 0 22px;
  color: #c8d7e8;
  background: #07182b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.72fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transform: scale(1.25);
  transform-origin: left center;
}

.site-footer p,
.site-footer a {
  color: #b9c9dc;
}

.site-footer p {
  max-width: 370px;
  margin: 16px 0 0;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 9px 0;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-phone {
  color: var(--white) !important;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.fine-print {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8ea4bb;
  font-size: 13px;
}

.mobile-call-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 64px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(7, 87, 168, 0.28);
  line-height: 1.18;
  font-weight: 900;
}

.mobile-call-bar strong {
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.policy-page {
  background: #f7fbff;
}

.policy-hero {
  padding: 72px 0 24px;
}

.policy-card {
  max-width: 900px;
  margin: 0 auto 74px;
  padding: 36px;
  border: 1px solid rgba(14, 26, 43, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.policy-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 58px);
}

.policy-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 22px;
}

.policy-card p,
.policy-card li {
  color: var(--text);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.contact-tile {
  padding: 22px;
  border-radius: 18px;
  background: var(--soft);
  border: 1px solid rgba(14, 26, 43, 0.08);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 179, 106, 0.56);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(11, 179, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 179, 106, 0);
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 640px;
    margin: 0 auto;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .container,
  .nav-wrap {
    width: min(100% - 28px, 1160px);
  }

  .top-alert {
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
  }

  .brand {
    height: 46px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    transform: scale(1.35);
  }

  .brand-text {
    font-size: 18px;
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: calc(42px + var(--header-height));
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(14, 26, 43, 0.1);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: var(--primary-soft);
  }

  .nav-links a::after {
    display: none;
  }

  .header-call {
    display: none;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-content {
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-row,
  .strip-grid,
  .process-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    justify-content: flex-start;
  }

  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .mobile-call-bar {
    display: flex;
  }

  .site-footer {
    padding-bottom: 98px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-wrap {
    width: min(100% - 24px, 1160px);
  }

  .section-pad {
    padding: 60px 0;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn,
  .white-btn {
    width: 100%;
  }

  .trust-row div,
  .service-card,
  .process-card,
  .why-list,
  .faq-intro,
  .accordion,
  .policy-card {
    border-radius: 18px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
  }

  .card-top {
    flex-wrap: wrap;
  }

  .phone-panel {
    padding: 24px 12px;
  }

  .big-number {
    font-size: 30px;
  }

  .services-grid,
  .footer-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .why-item {
    grid-template-columns: 34px 1fr;
    padding: 14px 0;
  }

  .why-item span {
    width: 34px;
    height: 34px;
  }

  .policy-card {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    transform: scale(1.25);
  }

  .nav-wrap {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


.disclaimer-section {
  padding: 44px 0;
  background: #f6f9ff;
}

.disclaimer-box {
  padding: 26px 28px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-left: 5px solid var(--yellow);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.disclaimer-box h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.disclaimer-box p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}