:root {
  --bg: #f2f4f6;
  --bg-soft: #e8eaed;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-tint: #d8e6f2;
  --text: #1b2a3b;
  --text-strong: #0d1b2a;
  --muted: #556778;
  --line: rgba(0, 0, 0, 0.1);
  --line-strong: rgba(0, 0, 0, 0.16);
  --blue: #005bac;
  --blue-strong: #003f7d;
  --blue-soft: #d8e6f2;
  --cyan: #005bac;
  --green: #003f7d;
  --shadow-sm: 0 2px 8px rgba(11, 45, 79, 0.08);
  --shadow-lg: 0 4px 20px rgba(11, 45, 79, 0.12);
  --radius-xl: 4px;
  --radius-lg: 3px;
  --radius-md: 2px;
  --radius-sm: 2px;
  --container: min(1200px, calc(100% - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section-pad {
  padding: 72px 0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible,
html:not(.js) .reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: #0b1f33;
  color: #fff;
}

.topbar-shell,
.topbar-links,
.header-shell,
.nav-links,
.header-actions,
.hero-actions,
.card-actions,
.mini-links,
.hero-points,
.section-cta,
.link-list {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text-strong);
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}

.card-actions,
.header-actions,
.hero-actions,
.mini-links,
.hero-points,
.section-cta,
.link-list {
  flex-wrap: wrap;
}

.topbar-shell {
  justify-content: flex-end;
  min-height: 36px;
  gap: 14px;
}

.topbar-shell p,
.topbar-links a {
  font-size: 13px;
}

.topbar-shell p {
  margin: 0;
}

.topbar-links {
  flex-wrap: wrap;
  gap: 0;
}

.topbar-links a {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 14px;
  min-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
}

.topbar-links a + a {
  margin-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 2px solid var(--blue-strong);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 16px rgba(13, 27, 42, 0.08);
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  width: 112px;
  height: auto;
}

.nav-links a,
.hero-lead,
.section-heading p,
.decision-card p,
.content-panel p,
.service-body p,
.highlight-body p,
.channel-card span,
.support-card p,
.contact-card p,
.site-footer p {
  color: var(--muted);
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mini-links a:hover,
.mini-links a:focus-visible,
.channel-card:hover strong,
.channel-card:focus-visible strong,
.link-list a:hover,
.link-list a:focus-visible {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 3px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 2px 10px rgba(0, 63, 125, 0.18);
}

.header-actions {
  justify-self: end;
  flex-wrap: nowrap;
}

.header-actions .btn {
  min-height: 40px;
  padding: 0 18px;
  white-space: nowrap;
}

.btn-secondary {
  color: var(--blue-strong);
  background: var(--bg-soft);
  border-color: rgba(0, 63, 125, 0.24);
}

.btn-ghost {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.btn-large {
  min-height: 56px;
  padding: 0 26px;
}

.section-kicker,
.panel-tag,
.product-badge,
.store-item-type {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker {
  gap: 10px;
  color: var(--blue);
  background: var(--blue-soft);
}

.section-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
strong {
  color: var(--text-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 0.98;
}

h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
}

h3 {
  font-size: 26px;
  line-height: 1.1;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 28px 0 52px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 244, 246, 0.88) 0%, rgba(242, 244, 246, 0.68) 34%, rgba(13, 27, 42, 0.24) 62%, rgba(13, 27, 42, 0.76) 100%),
    url("wp-content/uploads/2024/06/BANNER1_HOME_DESK_11.06-1.jpg") center/cover no-repeat;
}

.hero-video-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video-bg {
  overflow: hidden;
}

.hero-video-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(13, 27, 42, 0.16) 32%, rgba(13, 27, 42, 0.58) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.38) 26%, rgba(13, 27, 42, 0.1) 52%, rgba(13, 27, 42, 0.54) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.decision-card,
.image-panel,
.content-panel,
.service-card,
.highlight-card,
.channel-card,
.stack-card,
.map-card,
.support-card,
.testimonial-card,
.guarantee-card,
.contact-card,
.site-footer,
.store-item {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.hero-copy,
.content-panel,
.map-card,
.support-card,
.guarantee-card,
.contact-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.78;
}

.hero-search {
  max-width: 580px;
  margin: 20px 0 0;
}

.hero-search-shell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px 12px 20px;
  background: #263b88;
  box-shadow: var(--shadow-sm);
}

.hero-search-input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 38px;
  padding: 0;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  font-size: 18px;
}

.hero-search-input::placeholder {
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.hero-search-input:focus {
  outline: none;
  border-color: #ffffff;
}

.hero-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.hero-search-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-search-button:hover {
  color: rgba(255, 255, 255, 0.86);
}

.hero-search-note {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.hero-search-note a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-search-note a:hover {
  color: var(--blue-strong);
}

.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;
}

.hero-points {
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 2px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-card {
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.hero-card h2 {
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.02;
}

.hero-card-strong {
  background: linear-gradient(180deg, rgba(216, 230, 242, 0.95), rgba(255, 255, 255, 0.98));
}

.panel-tag {
  color: #fff;
  background: var(--blue);
}

.panel-tag-soft {
  background: #5f7387;
}

.hero-card p {
  margin: 12px 0 14px;
  color: var(--muted);
  line-height: 1.52;
}

.video-stage {
  overflow: hidden;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.92), rgba(13, 27, 42, 0.84));
  box-shadow: var(--shadow-lg);
}

.institutional-video {
  display: block;
  width: 100%;
  object-fit: cover;
  background: #0d1b2a;
}

.mini-links {
  flex-wrap: wrap;
}

.mini-links a {
  font-weight: 700;
}

.section-heading {
  max-width: 820px;
}

.decision-grid,
.feature-grid,
.service-grid,
.highlight-grid,
.support-grid,
.final-grid,
.footer-shell,
.testimonials-grid {
  display: grid;
  gap: 20px;
}

.decision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.decision-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--blue);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.decision-card:hover,
.service-card:hover,
.highlight-card:hover,
.store-item:hover,
.channel-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.decision-index {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 2px;
  color: #fff;
  font-weight: 800;
  background: var(--blue);
}

.decision-index-alt {
  background: var(--blue-strong);
}

.decision-card ul,
.support-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 0;
  list-style: none;
}

.decision-card li,
.support-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.66;
}

.decision-card li::before,
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--blue);
}

.decision-card h3,
.feature-card h3,
.service-body h3,
.highlight-body h3,
.support-card h3,
.contact-card h3,
.stack-card h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.06;
}

.decision-card p,
.service-body p,
.highlight-body p,
.support-card p,
.contact-card p,
.stack-card p,
.content-panel p {
  line-height: 1.56;
}

.store-section {
  overflow: hidden;
}

.store-marquee {
  position: relative;
  margin-top: 30px;
  padding: 10px 0 12px;
  overflow: hidden;
}

.store-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.store-marquee:hover .store-track {
  animation-play-state: paused;
}

.store-item {
  display: grid;
  align-content: start;
  width: 260px;
  padding: 18px;
  border-radius: 3px;
}

.store-item img,
.service-card img,
.highlight-card img,
.testimonial-card,
.image-panel img,
.map-image,
.seal-image,
.stack-card-image img {
  border-radius: 3px;
}

.store-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f8f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.store-item-type {
  margin-top: 16px;
  color: var(--blue);
  background: var(--blue-soft);
}

.store-item strong {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.45;
}

.store-item-price {
  margin-top: 12px;
  color: var(--text-strong);
  font-size: 22px;
  font-weight: 800;
}

.store-item-price small {
  margin-right: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-cta {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.split-grid,
.support-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
}

.final-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: stretch;
}

.split-grid-alt {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.image-panel {
  padding: 16px;
  border-radius: var(--radius-xl);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.video-panel {
  padding: 12px;
}

.video-stage-inline {
  height: 100%;
  padding: 0;
}

.video-stage-inline .institutional-video {
  height: clamp(320px, 42vw, 480px);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.feature-card,
.channel-card {
  padding: 20px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.66;
}

.service-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.service-card,
.highlight-card,
.testimonial-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.service-card img,
.highlight-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card-media {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.service-card-media img {
  transition: transform 0.24s ease;
}

.service-card-media:hover img,
.service-card-media:focus-visible img {
  transform: scale(1.035);
}

.service-body,
.highlight-body {
  padding: 22px;
}

.product-badge {
  color: #fff;
  background: var(--blue);
}

.channel-list,
.image-stack {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.channel-card {
  display: grid;
  gap: 8px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.stack-card {
  padding: 22px;
  border-radius: 3px;
}

.stack-card-primary {
  background: linear-gradient(180deg, rgba(216, 230, 242, 0.9), rgba(255, 255, 255, 1));
}

.stack-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.stack-card-image {
  padding: 14px;
}

.heading-tight h2 {
  max-width: 680px;
}

.map-card {
  display: grid;
  gap: 24px;
}

.map-image {
  width: 100%;
  background: #f7f8f9;
  padding: 16px;
}

.support-card {
  display: grid;
  align-content: start;
}

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.testimonial-card {
  width: 100%;
}

.guarantee-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.guarantee-card > div,
.contact-card,
.final-grid > * {
  min-width: 0;
}

.guarantee-card h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  max-width: 11ch;
}

.seal-image {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  align-content: start;
}

.link-list {
  flex-wrap: wrap;
  margin-top: 14px;
}

.link-list a {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding: 34px 0 46px;
  background: #ffffff;
}

.footer-shell {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-footer strong {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.site-footer p {
  margin: 0 0 8px;
  line-height: 1.65;
}

.chat-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  background: var(--blue-strong);
  box-shadow: 0 4px 14px rgba(0, 63, 125, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.chat-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-float:hover,
.chat-float:focus-visible {
  animation: pulse 1.5s ease-in-out infinite;
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 27;
  width: min(340px, calc(100vw - 28px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.chat-panel-card {
  padding: 18px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.chat-panel-header strong {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.chat-close {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}

.chat-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.chat-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.chat-option {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text-strong);
  font-weight: 700;
  text-align: left;
  background: #ffffff;
  cursor: pointer;
}

.chat-option:hover,
.chat-option:focus-visible {
  border-color: var(--line-strong);
  background: var(--bg-soft);
}

.page-main {
  background: var(--bg);
}

.page-hero-simple {
  padding: 40px 0 26px;
  background:
    linear-gradient(180deg, rgba(216, 230, 242, 0.46) 0%, rgba(242, 244, 246, 0.94) 58%, rgba(242, 244, 246, 1) 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero-shell,
.page-grid-2,
.page-grid-3,
.downloads-grid,
.blog-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

.page-hero-shell {
  grid-template-columns: minmax(0, 1.14fr) minmax(300px, 0.86fr);
  align-items: stretch;
}

.page-grid-2,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid-3,
.downloads-grid,
.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-hero-copy,
.page-card,
.faq-item,
.blog-card,
.legal-card,
.page-cta,
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.page-hero-copy,
.legal-card,
.page-cta,
.form-card {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.page-card,
.faq-item,
.blog-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.page-hero-side {
  display: grid;
  gap: 16px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue-strong);
  font-weight: 700;
}

.breadcrumb span {
  color: var(--muted);
}

.page-card p,
.faq-item p,
.blog-card p,
.legal-card p,
.form-card p,
.page-cta p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.page-card h3,
.faq-item h3,
.blog-card h3,
.legal-card h3,
.form-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.page-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.page-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.64;
}

.page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.page-note {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(0, 91, 172, 0.14);
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(216, 230, 242, 0.56);
}

.page-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.page-cta-copy {
  max-width: 640px;
}

.page-cta .card-actions {
  margin-top: 0;
}

.page-stat {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.page-stat strong {
  color: var(--blue-strong);
  font-size: 30px;
  line-height: 1;
}

.page-stat span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.simple-form {
  display: grid;
  gap: 14px;
}

.simple-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.simple-form input,
.simple-form textarea,
.simple-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: #fff;
}

.simple-form textarea {
  min-height: 150px;
  resize: vertical;
}

.legal-copy {
  display: grid;
  gap: 18px;
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.blog-card a,
.inline-link {
  color: var(--blue-strong);
  font-weight: 700;
}

.blog-card a:hover,
.inline-link:hover {
  color: var(--blue);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 63, 125, 0.24);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 63, 125, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 63, 125, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .feature-grid,
  .service-grid,
  .highlight-grid,
  .support-grid,
  .final-grid,
  .footer-shell,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .split-grid-alt {
    grid-template-columns: 1fr;
  }

  .page-hero-shell,
  .page-grid-3,
  .downloads-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .header-shell {
    gap: 18px;
    padding: 12px 0;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .highlight-grid,
  .feature-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-shell {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1200px);
  }

  .nav-links,
  .hero-actions,
  .hero-search-shell,
  .card-actions,
  .mini-links,
  .hero-points,
  .section-cta,
  .topbar-shell,
  .topbar-links,
  .link-list {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero-grid,
  .decision-grid,
  .feature-grid,
  .service-grid,
  .highlight-grid,
  .support-grid,
  .final-grid,
  .footer-shell,
  .testimonials-grid,
  .guarantee-card,
  .page-grid-2,
  .page-grid-3,
  .downloads-grid,
  .blog-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: auto;
  }

  .hero-actions .btn,
  .hero-search-button,
  .section-cta .btn {
    width: 100%;
  }

  .hero-search {
    max-width: none;
  }

  .hero-search-shell {
    padding: 12px 14px;
  }

  .hero-search-input {
    font-size: 16px;
  }

  .hero-search-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .hero-search-button svg {
    width: 24px;
    height: 24px;
  }

  .hero-copy,
  .content-panel,
  .map-card,
  .support-card,
  .guarantee-card,
  .contact-card,
  .hero-card,
  .decision-card,
  .page-hero-copy,
  .legal-card,
  .page-cta,
  .form-card,
  .page-card,
  .faq-item,
  .blog-card {
    padding: 24px;
  }

  .brand {
    width: auto;
  }

  .menu-toggle {
    width: auto;
    justify-content: center;
  }

  .header-shell {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .topbar-shell {
    padding: 10px 0;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .section-pad {
    padding: 52px 0;
  }

  .store-marquee {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .store-track {
    animation: none;
  }

  .store-item {
    width: 230px;
  }

  .image-panel img {
    min-height: 320px;
  }

  .video-stage-inline .institutional-video {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-video-bg {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(13, 27, 42, 0.24) 36%, rgba(13, 27, 42, 0.64) 100%),
      linear-gradient(90deg, rgba(242, 244, 246, 0.92) 0%, rgba(242, 244, 246, 0.74) 40%, rgba(13, 27, 42, 0.46) 100%);
  }

  .chat-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .chat-panel {
    right: 14px;
    left: 14px;
    bottom: 78px;
    width: auto;
  }

  .page-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
