:root {
  --navy-950: #07152d;
  --navy-900: #0a1d3d;
  --navy-850: #0d2d58;
  --navy-800: #123a70;
  --navy-700: #1b4f91;
  --blue-600: #2467d7;
  --blue-100: #eaf2ff;
  --red-650: #de2028;
  --red-600: #ee2d34;
  --red-500: #ff4b52;
  --green-600: #07965a;
  --green-100: #e9f9f1;
  --amber-500: #f4a51c;
  --ink: #101a2d;
  --muted: #637089;
  --muted-2: #8994a8;
  --line: #dfe6f0;
  --line-soft: #ebeff5;
  --paper: #ffffff;
  --surface: #f7f9fd;
  --surface-blue: #f2f7ff;
  --surface-red: #fff5f6;
  --shadow-sm: 0 10px 30px rgba(14, 35, 70, 0.08);
  --shadow-md: 0 22px 60px rgba(14, 35, 70, 0.13);
  --shadow-lg: 0 34px 90px rgba(8, 28, 62, 0.18);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 38px;
  --container: min(1720px, calc(100% - 64px));
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

::selection {
  color: #fff;
  background: var(--red-600);
}

:focus-visible {
  outline: 3px solid rgba(36, 103, 215, 0.42);
  outline-offset: 3px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--navy-950);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: clamp(76px, 7vw, 132px) 0;
  position: relative;
}

.section[id] {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-heading.centered {
  display: block;
  max-width: 980px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--red-600);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.section-label::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.section-label-light {
  color: #ff8d92;
}

.section-heading h2,
.cagcheck-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 3.3vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading.centered p,
.faq-intro > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.72;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 227, 240, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.4) blur(18px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 28px rgba(10, 29, 61, 0.08);
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
  padding-right: 5px;
  overflow: visible;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 236px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 38px);
}

.main-nav a {
  position: relative;
  color: #42506b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 2px;
  border-radius: 99px;
  background: var(--red-600);
  transition: right 0.2s ease;
}

.main-nav a:hover {
  color: var(--navy-900);
}

.main-nav a:hover::after {
  right: 0;
}

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

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
}

.header-phone span {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--navy-950);
  font-size: 15px;
  letter-spacing: -0.01em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: var(--navy-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  box-shadow: 0 12px 24px rgba(238, 45, 52, 0.19);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red-650), var(--red-500));
  box-shadow: 0 16px 34px rgba(238, 45, 52, 0.22);
}

.button-primary:hover,
.button-small:hover {
  box-shadow: 0 20px 42px rgba(238, 45, 52, 0.28);
}

.button-secondary {
  color: var(--navy-900);
  border-color: #cfd9e8;
  background: rgba(255, 255, 255, 0.82);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--blue-600);
  background: var(--surface-blue);
}

.button-outline {
  width: 100%;
  color: var(--navy-850);
  border-color: #bfcde0;
  background: #fff;
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 16px 34px rgba(2, 12, 28, 0.18);
}

.button-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(42px, 5vw, 86px) 0 clamp(50px, 6vw, 94px);
  overflow: clip;
  background:
    linear-gradient(110deg, rgba(247, 250, 255, 0.96), rgba(255, 255, 255, 0.96) 48%, rgba(255, 244, 246, 0.84)),
    radial-gradient(circle at 18% 20%, rgba(36, 103, 215, 0.1), transparent 34%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(19, 58, 112, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 58, 112, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 82%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 540px;
  height: 540px;
  top: -210px;
  right: -150px;
  background: rgba(238, 45, 52, 0.08);
}

.hero-orb-two {
  width: 340px;
  height: 340px;
  left: -180px;
  bottom: -120px;
  background: rgba(36, 103, 215, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.72fr);
  gap: clamp(38px, 5vw, 90px);
  align-items: center;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.eyebrow {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy-850);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.eyebrow-soft {
  color: var(--navy-850);
  border: 1px solid #cdd9eb;
  background: rgba(255, 255, 255, 0.78);
}

.eyebrow-soft i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14b86a;
  box-shadow: 0 0 0 5px rgba(20, 184, 106, 0.12);
}

.hero h1 {
  max-width: 1000px;
  margin: 22px 0 14px;
  color: var(--navy-950);
  font-size: clamp(48px, 5.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--red-600);
  font-style: normal;
}

.hero-kicker {
  margin: 0 0 18px;
  color: var(--navy-850);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 950;
  letter-spacing: -0.02em;
}

.hero-kicker b {
  color: var(--red-600);
}

.hero-lead {
  max-width: 900px;
  margin: 0;
  color: #536179;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.65;
}

.hero-offers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 910px;
  margin-top: 28px;
}

.offer-chip {
  position: relative;
  min-width: 0;
  padding: 18px 20px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #c9d5e7;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.offer-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
}

.offer-chip-primary {
  border-color: rgba(238, 45, 52, 0.42);
  background: linear-gradient(145deg, #fff, #fff6f7);
}

.offer-chip > span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.045em;
}

.offer-chip strong {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 8px;
  color: var(--navy-950);
  font-size: clamp(37px, 3vw, 54px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.offer-chip-primary strong {
  color: var(--red-600);
}

.offer-chip strong small {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.gift-badge {
  position: absolute;
  right: 13px;
  bottom: 12px;
  max-width: 120px;
  padding: 7px 10px;
  border-radius: 12px;
  color: #fff;
  background: var(--red-600);
  text-align: center;
  font-size: 10px;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 22px;
  color: #536179;
  font-size: 13px;
  font-weight: 800;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust i {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

/* Lead panel */
.lead-panel {
  position: relative;
  align-self: center;
  scroll-margin-top: calc(var(--header-height) + 18px);
  padding: 24px;
  border: 1px solid rgba(206, 217, 232, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.lead-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(36, 103, 215, 0.18), rgba(238, 45, 52, 0.18));
  filter: blur(18px);
  opacity: 0.38;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.panel-topline > div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-950);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.panel-topline small {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #17bf70;
  box-shadow: 0 0 0 6px rgba(23, 191, 112, 0.12);
}

.customer-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 16px 0 14px;
  padding: 5px;
  border: 0;
  border-radius: 15px;
  background: #f1f4f9;
}

.customer-switch legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.customer-switch label {
  min-width: 0;
  cursor: pointer;
}

.customer-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customer-switch span {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
  font-weight: 850;
  transition: 0.18s ease;
}

.customer-switch span b {
  color: var(--navy-850);
  font-size: 14px;
}

.customer-switch input:checked + span {
  color: var(--navy-900);
  border-color: #d6deea;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16, 42, 80, 0.09);
}

.customer-switch input:checked + span b {
  color: var(--red-600);
}

.quantity-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.quantity-block > label {
  color: #4b5870;
  font-size: 12px;
  font-weight: 900;
}

.quantity-control {
  display: grid;
  grid-template-columns: 38px 74px 38px;
  align-items: center;
  border: 1px solid #d8e0ec;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.quantity-control button {
  height: 38px;
  border: 0;
  background: #f5f7fb;
  color: var(--navy-850);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.quantity-control button:hover {
  background: var(--blue-100);
}

.quantity-control input {
  width: 74px;
  height: 38px;
  border: 0;
  outline: 0;
  text-align: center;
  color: var(--navy-950);
  font-size: 16px;
  font-weight: 950;
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.estimate-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 15px 34px rgba(7, 21, 45, 0.2);
}

.estimate-box > div {
  padding: 15px 16px;
}

.estimate-box > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.estimate-box span {
  display: block;
  color: #bfcce0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-box strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(18px, 1.35vw, 24px);
  letter-spacing: -0.03em;
}

.estimate-gift {
  min-height: 30px;
  margin: 8px 2px 8px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.project-price-note {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0 10px;
  padding: 11px 12px;
  border: 1px solid #cfe1ff;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f8ff, #fff);
  box-shadow: 0 8px 22px rgba(25, 89, 190, .07);
}

.project-price-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: #e5efff;
  font-size: 18px;
}

.project-price-note strong {
  display: block;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .055em;
}

.project-price-note p {
  margin: 3px 0 0;
  color: #58657a;
  font-size: 10.5px;
  line-height: 1.48;
}

.project-price-note a {
  color: #0866cf;
  font-weight: 950;
  text-decoration: none;
}

.project-price-note a:hover {
  text-decoration: underline;
}

.order-code-box {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 5px;
  padding: 10px 12px;
  border: 1px dashed #c8d4e5;
  border-radius: 13px;
  background: #fafcff;
}

.order-code-box > div {
  min-width: 0;
}

.order-code-box span {
  display: block;
  margin-bottom: 3px;
  color: #6a768a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.order-code-box strong {
  display: block;
  max-width: 100%;
  color: var(--navy-950);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 11.5px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.order-code-box small {
  flex: 0 0 150px;
  color: #7b8698;
  text-align: right;
  font-size: 8.8px;
  line-height: 1.35;
}

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

.field {
  display: block;
  margin: 8px 0;
}

.field > span {
  display: block;
  margin-bottom: 6px;
  color: #4d5970;
  font-size: 11px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #d9e1ec;
  border-radius: 11px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
  line-height: 1.5;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #69758a 50%), linear-gradient(135deg, #69758a 50%, transparent 50%);
  background-position: calc(100% - 17px) 18px, calc(100% - 12px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(36, 103, 215, 0.09);
  background: #fff;
}

.field input:user-invalid,
.consent-check input:user-invalid + span {
  border-color: rgba(222, 32, 40, 0.65);
}

.optional-fields {
  margin: 6px 0 2px;
  border: 1px dashed #ced8e7;
  border-radius: 12px;
  background: #fafcff;
}

.optional-fields summary {
  padding: 10px 12px;
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.optional-fields[open] {
  padding: 0 10px 7px;
}

.optional-fields[open] summary {
  margin-inline: -10px;
  padding-inline: 22px;
  border-bottom: 1px dashed #d8e0eb;
}

.consent-check {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 9px;
  align-items: start;
  margin: 10px 1px;
  cursor: pointer;
}

.consent-check input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--red-600);
}

.consent-check span {
  color: #7a8598;
  font-size: 10px;
  line-height: 1.45;
}

.consent-check a {
  color: var(--blue-600);
  font-weight: 800;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  justify-content: space-between;
  margin-top: 4px;
  padding-inline: 19px;
  color: #fff;
  background: linear-gradient(135deg, var(--red-650), var(--red-500));
  box-shadow: 0 16px 34px rgba(238, 45, 52, 0.24);
}

.submit-button b {
  font-size: 22px;
}

.submit-button[disabled] {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-disclaimer {
  margin: 9px 6px 0;
  color: #8b95a7;
  text-align: center;
  font-size: 9.5px;
  line-height: 1.5;
}

.form-status {
  display: none;
  margin-top: 11px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.form-status.ok {
  display: block;
  color: #086f43;
  border: 1px solid #b9ebd3;
  background: #eafaf2;
}

.form-status.err {
  display: block;
  color: #a41424;
  border: 1px solid #f0c0c5;
  background: #fff1f2;
}

.form-status strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid #e3e9f2;
  border-bottom: 1px solid #e3e9f2;
  background: #fff;
}

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

.trust-strip a {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  text-decoration: none;
  transition: background 0.18s ease;
}

.trust-strip a + a {
  border-left: 1px solid #e7ecf3;
}

.trust-strip a:hover {
  background: var(--surface-blue);
}

.trust-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-800), var(--blue-600));
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(29, 79, 145, 0.18);
}

.trust-strip b,
.trust-strip small {
  display: block;
}

.trust-strip b {
  color: var(--navy-950);
  font-size: 14px;
}

.trust-strip small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

/* Value cards */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  position: relative;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #c7d5e8;
  box-shadow: var(--shadow-md);
}

.value-card .number {
  position: absolute;
  top: 16px;
  right: 20px;
  color: #e5eaf2;
  font-size: 50px;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.value-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--red-600);
  background: var(--surface-red);
  font-size: 17px;
  font-weight: 950;
}

.value-card h3 {
  margin: 28px 0 10px;
  color: var(--navy-950);
  font-size: 20px;
  letter-spacing: -0.025em;
}

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

.process-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: center;
  margin-top: 24px;
  padding: 34px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-md);
}

.process-copy h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2vw, 36px);
  letter-spacing: -0.035em;
}

.process-copy p {
  margin: 0;
  color: #c1cee0;
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.process-list b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--red-600);
}

.process-list span {
  color: #eef3fb;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}

/* CAG Check */
.section-blue {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(49, 116, 226, 0.35), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(238, 45, 52, 0.2), transparent 31%),
    linear-gradient(140deg, var(--navy-950), #0b2c5a 55%, #113a70);
}

.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.cagcheck-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(44px, 6vw, 100px);
  align-items: center;
}

.cagcheck-media {
  position: relative;
}

.media-frame {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(1, 8, 22, 0.38);
  backdrop-filter: blur(10px);
}

.media-frame img {
  display: block;
  width: 100%;
  border-radius: 23px;
}

.media-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: max-content;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 21, 45, 0.92);
  box-shadow: 0 16px 35px rgba(2, 10, 25, 0.28);
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.cagcheck-copy h2 {
  color: #fff;
}

.section-lead-light {
  margin: 18px 0 0;
  color: #c4d2e7;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.7;
}

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

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.feature-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: var(--red-600);
  font-size: 11px;
  font-weight: 950;
}

.feature-list h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
}

.feature-list p {
  margin: 0;
  color: #b9c8dd;
  font-size: 12px;
  line-height: 1.55;
}

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

.capability-row > div {
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

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

.capability-row strong {
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.capability-row span {
  margin-top: 3px;
  color: #b9c8dd;
  font-size: 9.5px;
  font-weight: 700;
}

.data-note {
  margin: 9px 2px 20px;
  color: #95a8c3;
  font-size: 9.5px;
  line-height: 1.5;
}

/* Legal */
.legal-section {
  background: linear-gradient(180deg, #fff, #f7f9fd);
}

.legal-heading {
  align-items: end;
}

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

.legal-badges article {
  padding: 23px;
  border: 1px solid #dce4ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.legal-code {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-600);
  font-size: 11px;
  font-weight: 950;
}

.legal-badges h3 {
  margin: 17px 0 9px;
  color: var(--navy-950);
  font-size: 18px;
}

.legal-badges p {
  margin: 0;
  color: #4d5a71;
  font-size: 13px;
  line-height: 1.65;
}

.legal-badges small {
  display: block;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #dce3ed;
  color: #8993a5;
  font-size: 9.5px;
  line-height: 1.55;
}

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

.document-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  min-height: 184px;
  padding: 10px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #dce4ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.document-card:hover {
  transform: translateY(-4px);
  border-color: #bfcde0;
  box-shadow: var(--shadow-md);
}

.document-image {
  display: block;
  min-height: 164px;
  overflow: hidden;
  border-radius: 15px;
  background: #eef2f7;
}

.document-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.document-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 16px;
}

.document-info b {
  color: var(--navy-950);
  font-size: 17px;
  line-height: 1.35;
}

.document-info small {
  margin-top: 7px;
  color: var(--red-600);
  font-size: 11px;
  font-weight: 850;
}

.tax-note {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 26px;
  border: 1px solid #cbd8ea;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef5ff, #fff7f8);
}

.tax-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 21px;
  color: #fff;
  background: var(--navy-850);
  font-size: 18px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(13, 45, 88, 0.2);
}

.tax-note h3 {
  margin: 0 0 6px;
  color: var(--navy-950);
  font-size: 20px;
}

.tax-note p {
  margin: 0;
  color: #526077;
  font-size: 13px;
  line-height: 1.7;
}

/* Plans */
.plans-section {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid #dce4ef;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.plan-featured {
  z-index: 1;
  transform: translateY(-12px);
  border: 2px solid rgba(238, 45, 52, 0.52);
  box-shadow: 0 28px 70px rgba(238, 45, 52, 0.16);
}

.popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 8px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-600);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(238, 45, 52, 0.24);
}

.plan-name {
  color: var(--navy-850);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.plan-featured .plan-name {
  color: var(--red-600);
}

.plan-desc {
  min-height: 24px;
  margin: 6px 0 23px;
  color: var(--muted);
  font-size: 12px;
}

.plan-price {
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
}

.plan-featured .plan-price {
  background: linear-gradient(135deg, var(--red-650), var(--red-500));
}

.plan-price strong,
.plan-price span {
  display: block;
}

.plan-price strong {
  font-size: clamp(30px, 2.5vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.plan-price span {
  margin-top: 6px;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 26px;
  color: #536078;
  font-size: 13px;
  line-height: 1.55;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-600);
  background: var(--green-100);
  font-size: 10px;
  font-weight: 950;
}

.plan-card .button {
  margin-top: auto;
}

.plans-tax {
  max-width: 1100px;
  margin: 22px auto 0;
  color: #7d8798;
  text-align: center;
  font-size: 10.5px;
  line-height: 1.65;
}

.ecosystem-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
  margin-top: 32px;
}

.ecosystem-card {
  position: relative;
  min-height: 310px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 24px;
  background: #edf2f8;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ecosystem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ecosystem-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center top;
  transition: transform .3s ease;
}

.ecosystem-card:hover img {
  transform: scale(1.02);
}

.ecosystem-card > span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  color: #fff;
  background: rgba(7, 21, 45, 0.9);
  backdrop-filter: blur(12px);
  text-align: left;
}

.ecosystem-card b,
.ecosystem-card small {
  display: block;
}

.ecosystem-card b {
  font-size: 15px;
}

.ecosystem-card small {
  margin-top: 4px;
  color: #c5d1e2;
  font-size: 10px;
}

/* FAQ */
.faq-section {
  background: linear-gradient(180deg, #f6f9fd, #fff);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

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

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

.faq-list details {
  border: 1px solid #dce4ef;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 42, 80, 0.045);
}

.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--navy-850);
  background: var(--blue-100);
  font-size: 19px;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--red-600);
}

.faq-list details[open] summary {
  border-bottom: 1px solid #e6ebf2;
}

.faq-list details p {
  margin: 0;
  padding: 17px 22px 21px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

/* Final CTA */
.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(49, 116, 226, 0.38), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) auto;
  gap: 40px;
  align-items: center;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  max-width: 900px;
  margin: 14px 0 0;
  color: #c2cee0;
  font-size: 16px;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

/* Footer */
.site-footer {
  padding: 58px 0 32px;
  color: #b9c4d5;
  background: #061328;
}

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

.footer-brand img {
  width: 225px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.site-footer h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

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

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p {
  color: #7e8ca2;
  font-size: 10px;
}

.footer-bottom p:last-child {
  text-align: right;
}

/* Floating actions */
.floating-phone {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 9px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red-600);
  box-shadow: 0 18px 40px rgba(238, 45, 52, 0.32);
  text-decoration: none;
  transition: transform .2s ease;
}

.floating-phone:hover {
  transform: translateY(-3px);
}

.floating-phone span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.floating-phone b {
  font-size: 13px;
}

.mobile-action-bar {
  display: none;
}

/* Document dialog */
.document-dialog {
  width: min(960px, calc(100% - 28px));
  max-height: min(92svh, 980px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 30px 100px rgba(2, 10, 25, 0.45);
}

.document-dialog::backdrop {
  background: rgba(3, 12, 28, 0.78);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  max-height: 92svh;
  overflow: auto;
  background: #fff;
}

.dialog-image-wrap {
  min-height: 500px;
  padding: 18px;
  background: #eef2f7;
}

.dialog-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92svh - 36px);
  margin: auto;
  object-fit: contain;
}

.dialog-copy {
  padding: 70px 26px 30px;
}

.dialog-copy h2 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 24px;
  line-height: 1.25;
}

.dialog-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid #d7e0eb;
  border-radius: 13px;
  color: var(--navy-950);
  background: rgba(255,255,255,.94);
  font-size: 24px;
  cursor: pointer;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 110;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid #d6dfeb;
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 70px rgba(7, 21, 45, 0.25);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner b {
  color: var(--navy-950);
  font-size: 14px;
}

.cookie-banner p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.button-cookie-secondary,
.button-cookie-primary {
  min-height: 42px;
  padding-inline: 14px;
  font-size: 11px;
}

.button-cookie-secondary {
  color: var(--navy-850);
  border-color: #cbd6e5;
  background: #fff;
}

.button-cookie-primary {
  color: #fff;
  background: var(--navy-850);
}

/* Performance: skip below-the-fold paint until near viewport */
@supports (content-visibility: auto) {
  .value-grid,
  .cagcheck-grid,
  .legal-badges,
  .document-grid,
  .plan-grid,
  .ecosystem-gallery,
  .faq-grid {
    content-visibility: auto;
    contain-intrinsic-size: 1px 800px;
  }
}

/* 4K / very large displays */
@media (min-width: 2200px) {
  :root {
    --container: min(1940px, calc(100% - 130px));
    --header-height: 92px;
  }

  .brand img {
    width: 260px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .header-phone strong {
    font-size: 18px;
  }

  .button-small {
    min-height: 52px;
    padding-inline: 24px;
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(520px, 0.72fr);
    gap: 110px;
  }

  .lead-panel {
    padding: 32px;
  }

  .field input,
  .field select {
    min-height: 50px;
    font-size: 16px;
  }

  .submit-button {
    min-height: 64px;
    font-size: 16px;
  }

  .value-card {
    min-height: 320px;
    padding: 34px;
  }

  .value-card h3 {
    font-size: 24px;
  }

  .value-card p {
    font-size: 16px;
  }
}

@media (max-width: 1320px) {
  :root {
    --container: min(1180px, calc(100% - 44px));
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .72fr);
    gap: 42px;
  }

  .offer-chip {
    padding: 16px;
  }

  .gift-badge {
    position: static;
    display: inline-flex;
    margin-top: 9px;
  }

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

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

  .document-wide {
    grid-column: 1 / -1;
  }

  .ecosystem-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 70px;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .brand img {
    width: 196px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    transform: translateY(-16px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid #dbe3ee;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 11px;
    font-size: 14px;
  }

  .main-nav a:hover {
    background: var(--surface-blue);
  }

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

  .header-actions {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy {
    max-width: 940px;
  }

  .lead-panel {
    width: min(780px, 100%);
    margin-inline: auto;
  }

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

  .trust-strip a:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #e7ecf3;
  }

  .trust-strip a:nth-child(4) {
    border-top: 1px solid #e7ecf3;
  }

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

  .process-panel {
    grid-template-columns: 1fr;
  }

  .cagcheck-grid {
    grid-template-columns: 1fr;
  }

  .cagcheck-media {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .cagcheck-copy {
    max-width: 900px;
    margin-inline: auto;
  }

  .plan-card {
    min-height: 500px;
    padding: 24px;
  }

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

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 30px, 720px);
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(45px, 11vw, 70px);
  }

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

  .offer-chip strong {
    font-size: 44px;
  }

  .offer-chip strong small {
    font-size: 11px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip a {
    min-height: 92px;
    padding: 15px;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .legal-badges {
    grid-template-columns: 1fr 1fr;
  }

  .document-grid {
    grid-template-columns: 1fr;
  }

  .document-wide {
    grid-column: auto;
  }

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

  .plan-featured {
    transform: none;
    order: -1;
  }

  .plan-card {
    min-height: 0;
  }

  .ecosystem-gallery {
    grid-template-columns: 1fr;
  }

  .ecosystem-card:first-child {
    grid-column: auto;
  }

  .ecosystem-card {
    min-height: 270px;
  }

  .ecosystem-card img {
    min-height: 270px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-actions {
    justify-content: flex-start;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom p:last-child {
    text-align: left;
  }

  .floating-phone {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: calc(7px + env(safe-area-inset-bottom));
    z-index: 78;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    min-height: 60px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(7, 21, 45, 0.95);
    box-shadow: 0 18px 45px rgba(2, 9, 22, 0.33);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 13px;
    border-radius: 13px;
    color: #fff;
    text-decoration: none;
  }

  .mobile-action-bar a + a {
    background: var(--red-600);
  }

  .mobile-action-bar span {
    color: #bfcce0;
    font-size: 9px;
    font-weight: 750;
  }

  .mobile-action-bar a + a span {
    color: #ffe7e9;
  }

  .mobile-action-bar b {
    margin-top: 2px;
    font-size: 12px;
  }

  .cookie-banner {
    bottom: calc(78px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  .dialog-shell {
    grid-template-columns: 1fr;
  }

  .dialog-copy {
    padding: 22px;
  }

  .dialog-image-wrap {
    min-height: 0;
    max-height: 66svh;
    overflow: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 520px);
    --header-height: 64px;
  }

  .brand img {
    width: 174px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 30px 0 34px;
  }

  .eyebrow-row {
    gap: 7px;
  }

  .eyebrow {
    min-height: 29px;
    padding-inline: 9px;
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 17px;
    font-size: clamp(40px, 12.4vw, 57px);
    line-height: 1.01;
  }

  .hero-kicker {
    font-size: 17px;
  }

  .hero-lead {
    font-size: 15.5px;
    line-height: 1.58;
  }

  .hero-offers {
    gap: 10px;
    margin-top: 20px;
  }

  .offer-chip {
    padding: 15px;
    border-radius: 18px;
  }

  .offer-chip strong {
    font-size: 38px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    font-size: 10.5px;
  }

  .lead-panel {
    padding: 15px;
    border-radius: 22px;
  }

  .panel-topline {
    padding-bottom: 13px;
  }

  .customer-switch span {
    min-height: 45px;
    flex-direction: column;
    gap: 1px;
    font-size: 9.5px;
  }

  .customer-switch span b {
    font-size: 13px;
  }

  .quantity-block {
    margin-top: 3px;
  }

  .estimate-box > div {
    padding: 13px 11px;
  }

  .estimate-box strong {
    font-size: 17px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 46px;
    font-size: 16px;
  }

  .submit-button {
    min-height: 58px;
    font-size: 12px;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip a + a,
  .trust-strip a:nth-child(3),
  .trust-strip a:nth-child(4) {
    border-left: 0;
    border-top: 1px solid #e7ecf3;
  }

  .trust-strip a {
    min-height: 78px;
  }

  .trust-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading.centered {
    text-align: left;
  }

  .section-heading h2,
  .cagcheck-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: 35px;
  }

  .section-heading > p,
  .section-heading.centered p,
  .faq-intro > p {
    font-size: 15px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .value-card {
    min-height: 0;
    padding: 21px;
  }

  .value-card h3 {
    margin-top: 20px;
  }

  .process-panel {
    padding: 22px;
    gap: 25px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
  }

  .cagcheck-grid {
    gap: 52px;
  }

  .media-frame {
    padding: 7px;
    border-radius: 23px;
  }

  .media-frame img {
    border-radius: 17px;
  }

  .media-badge {
    bottom: -27px;
    max-width: calc(100% - 16px);
    padding: 9px 12px;
    border-radius: 15px;
    font-size: 9px;
    white-space: normal;
  }

  .feature-list article {
    grid-template-columns: 38px 1fr;
    padding: 14px;
  }

  .feature-list article > span {
    width: 38px;
    height: 38px;
  }

  .capability-row {
    grid-template-columns: 1fr 1fr;
  }

  .legal-badges {
    grid-template-columns: 1fr;
  }

  .document-card {
    grid-template-columns: 102px minmax(0, 1fr);
    min-height: 150px;
  }

  .document-image {
    min-height: 130px;
  }

  .document-info {
    padding: 12px;
  }

  .document-info b {
    font-size: 15px;
  }

  .tax-note {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .tax-icon {
    width: 58px;
    height: 58px;
    border-radius: 17px;
  }

  .plan-card {
    padding: 22px;
  }

  .ecosystem-card {
    min-height: 250px;
  }

  .ecosystem-card img {
    min-height: 250px;
  }

  .faq-list summary {
    padding: 17px 50px 17px 17px;
    font-size: 14px;
  }

  .faq-list details p {
    padding: 15px 17px 19px;
  }

  .final-cta {
    padding: 58px 0;
  }

  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .footer-brand,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .cookie-banner {
    left: 8px;
    width: calc(100% - 16px);
    padding: 14px;
    border-radius: 17px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button-cookie-secondary,
  .button-cookie-primary {
    padding-inline: 9px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Static subpages: privacy / 404 */
.subpage {
  min-height: 100svh;
  background: linear-gradient(180deg, #f5f9ff, #fff 40%);
}

.subpage-main {
  padding: 58px 0 90px;
}

.subpage-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid #dbe4ef;
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.subpage-card .section-label {
  margin-bottom: 16px;
}

.subpage-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.subpage-card > p.lead-copy {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.policy-block {
  padding: 22px 0;
  border-top: 1px solid #e7ecf3;
}

.policy-block h2 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 22px;
  letter-spacing: -0.025em;
}

.policy-block p,
.policy-block li {
  color: #5d6a80;
  font-size: 14px;
  line-height: 1.75;
}

.policy-block ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.not-found {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: 50px 0 90px;
}

.not-found-card {
  max-width: 820px;
  padding: 50px;
  text-align: center;
  border: 1px solid #dbe4ef;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.not-found-code {
  color: var(--red-600);
  font-size: clamp(76px, 14vw, 150px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -0.08em;
}

.not-found-card h1 {
  margin: 26px 0 10px;
  color: var(--navy-950);
  font-size: clamp(30px, 5vw, 50px);
  letter-spacing: -0.04em;
}

.not-found-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.not-found-card .button {
  margin-top: 24px;
}

@media (max-width: 560px) {
  .subpage-main {
    padding-top: 28px;
  }

  .subpage-card,
  .not-found-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* Thank-you page */
.thank-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 12% 8%, rgba(238, 45, 52, .09), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(36, 103, 215, .10), transparent 32%),
    linear-gradient(180deg, #f7faff, #fff 55%);
}

.thank-main {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: clamp(38px, 6vw, 86px) 0 96px;
}

.thank-card {
  max-width: 1050px;
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
  border: 1px solid #dce5f1;
  border-radius: 34px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-lg);
}

.success-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #0aa867, #057947);
  box-shadow: 0 18px 36px rgba(7, 150, 90, .24);
  font-size: 42px;
  font-weight: 950;
}

.thank-card .section-label {
  justify-content: center;
}

.thank-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.thank-card > .lead-copy {
  max-width: 760px;
  margin: 20px auto 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.lead-reference {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 34px;
  padding: 10px 16px;
  color: var(--navy-900);
  border: 1px solid #cddbf0;
  border-radius: 999px;
  background: #f3f7ff;
  font-size: 13px;
}

.lead-reference[hidden] {
  display: none;
}

.order-reference {
  display: inline-grid;
  min-width: min(100%, 520px);
  gap: 3px;
  padding: 14px 18px;
  border-radius: 18px;
  text-align: left;
}

.order-reference > span {
  color: #66748a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.order-reference > strong {
  color: var(--navy-950);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  overflow-wrap: anywhere;
}

.order-reference small {
  margin-top: 2px;
  color: #7d899b;
  font-size: 10px;
}

.next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  text-align: left;
}

.next-step-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #e1e7f0;
  border-radius: 22px;
  background: #fff;
}

.next-step-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: var(--navy-850);
  font-size: 12px;
  font-weight: 950;
}

.next-step-grid h2 {
  margin: 20px 0 8px;
  color: var(--navy-950);
  font-size: 18px;
}

.next-step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.thank-note {
  max-width: 760px;
  margin: 24px auto 0;
  color: #6b768a;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .thank-main { padding-top: 28px; }
  .thank-card { border-radius: 24px; }
  .next-step-grid { grid-template-columns: 1fr; }
  .next-step-grid article { min-height: 0; }
  .thank-actions { display: grid; grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Mobile App UI v5 — compact, smooth, image-safe
   -------------------------------------------------------------------------- */
.mobile-tabs {
  display: none;
}

@media (max-width: 820px) {
  :root {
    --mobile-tabs-height: 46px;
    --container: min(100% - 20px, 720px);
  }

  html {
    scroll-padding-top: calc(var(--header-height) + var(--mobile-tabs-height) + 10px);
  }

  body {
    background: #f0f2f5;
    overscroll-behavior-y: contain;
  }

  .site-header {
    border-bottom-color: #e4e7ec;
    background: #fff;
    backdrop-filter: none;
    box-shadow: 0 1px 2px rgba(10, 29, 61, 0.05);
  }

  .header-inner {
    gap: 12px;
  }

  .mobile-tabs {
    position: sticky;
    top: var(--header-height);
    z-index: 86;
    display: flex;
    min-height: var(--mobile-tabs-height);
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    overflow-x: auto;
    border-bottom: 1px solid #e4e7ec;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 8px rgba(10, 29, 61, 0.04);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-tabs a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #526078;
    background: #f1f3f6;
    text-decoration: none;
    font-size: 12px;
    font-weight: 850;
    line-height: 32px;
    white-space: nowrap;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
    scroll-snap-align: center;
  }

  .mobile-tabs a.is-active {
    color: #fff;
    border-color: var(--navy-850);
    background: var(--navy-850);
  }

  main {
    background: #f0f2f5;
  }

  .hero {
    min-height: 0;
    padding: 10px 0;
    overflow: visible;
    background: #f0f2f5;
  }

  .hero::before,
  .hero-orb {
    display: none;
  }

  .hero-grid {
    gap: 10px;
    align-items: stretch;
  }

  .hero-copy,
  .lead-panel {
    width: 100%;
    margin: 0;
    border: 1px solid #e1e5eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(10, 29, 61, 0.06);
  }

  .hero-copy {
    padding: 19px;
  }

  .lead-panel {
    padding: 16px;
  }

  .lead-panel::before {
    display: none;
  }

  .eyebrow-row {
    gap: 6px;
  }

  .eyebrow {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .hero h1 {
    max-width: none;
    margin: 16px 0 10px;
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.048em;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.35;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-offers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .offer-chip {
    min-height: 142px;
    padding: 13px;
    border-radius: 17px;
    box-shadow: none;
  }

  .offer-chip:hover {
    transform: none;
    box-shadow: none;
  }

  .offer-chip > span {
    min-height: 28px;
    font-size: 9px;
    line-height: 1.35;
  }

  .offer-chip strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(31px, 8.8vw, 39px);
    line-height: .95;
  }

  .offer-chip strong small {
    display: block;
    margin: 6px 0 0;
    font-size: 9px;
    line-height: 1.25;
  }

  .gift-badge {
    position: static;
    display: inline-flex;
    max-width: none;
    margin-top: 8px;
    padding: 5px 7px;
    border-radius: 9px;
    font-size: 8.5px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-actions .button-secondary {
    min-height: 44px;
    border-color: #dce2ea;
    background: #f7f8fa;
  }

  .hero-trust {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    margin: 14px -4px 0;
    padding: 0 4px 3px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .hero-trust::-webkit-scrollbar {
    display: none;
  }

  .hero-trust span {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid #e1e6ed;
    border-radius: 999px;
    background: #f7f8fa;
    font-size: 10px;
    scroll-snap-align: start;
  }

  .hero-trust i {
    width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .panel-topline {
    padding-bottom: 12px;
  }

  .customer-switch {
    margin: 13px 0 12px;
  }

  .customer-switch span {
    min-height: 48px;
    padding: 6px;
    font-size: 10px;
  }

  .quantity-control {
    min-height: 48px;
  }

  .estimate-box {
    gap: 7px;
  }

  .estimate-box > div {
    min-width: 0;
  }

  .estimate-box strong {
    overflow-wrap: anywhere;
  }

  .form-grid {
    gap: 10px;
  }

  .field input,
  .field select,
  .field textarea {
    border-radius: 13px;
  }

  .optional-fields {
    border-radius: 14px;
  }

  .consent-check {
    align-items: flex-start;
    font-size: 10.5px;
  }

  .submit-button {
    border-radius: 14px;
  }

  .trust-strip {
    margin-top: 0;
    padding: 0 0 10px;
    border: 0;
    background: #f0f2f5;
  }

  .trust-strip-grid {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 9px;
    margin: 0;
    padding: 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .trust-strip-grid::-webkit-scrollbar {
    display: none;
  }

  .trust-strip a,
  .trust-strip a + a,
  .trust-strip a:nth-child(3),
  .trust-strip a:nth-child(4) {
    flex: 0 0 min(82vw, 340px);
    min-height: 76px;
    padding: 13px;
    border: 1px solid #e1e5eb;
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(10, 29, 61, 0.05);
    scroll-snap-align: start;
  }

  .section {
    margin-top: 8px;
    padding: 44px 0;
    border-top: 1px solid #e6e9ee;
    border-bottom: 1px solid #e6e9ee;
    background: #fff;
  }

  .section-blue {
    border-color: rgba(255, 255, 255, .08);
    background: var(--navy-950);
  }

  .section-heading,
  .section-heading.centered {
    margin-bottom: 25px;
    text-align: left;
  }

  .section-heading h2,
  .cagcheck-copy h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .section-heading > p,
  .section-heading.centered p,
  .faq-intro > p,
  .section-lead-light {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .section-label {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .value-grid,
  .legal-badges,
  .document-grid,
  .plan-grid,
  .ecosystem-gallery {
    display: flex;
    grid-template-columns: none;
    gap: 11px;
    margin-right: -10px;
    margin-left: -10px;
    padding: 0 10px 8px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .value-grid::-webkit-scrollbar,
  .legal-badges::-webkit-scrollbar,
  .document-grid::-webkit-scrollbar,
  .plan-grid::-webkit-scrollbar,
  .ecosystem-gallery::-webkit-scrollbar {
    display: none;
  }

  .value-card {
    flex: 0 0 min(82vw, 340px);
    min-height: 218px;
    padding: 21px;
    border-radius: 19px;
    box-shadow: 0 1px 2px rgba(10, 29, 61, .05);
    scroll-snap-align: start;
  }

  .value-card:hover {
    transform: none;
  }

  .process-panel {
    margin-top: 18px;
    padding: 20px;
    border-radius: 20px;
  }

  .process-list {
    gap: 8px;
  }

  .process-list li {
    padding: 12px;
    border-radius: 14px;
  }

  .cagcheck-grid {
    gap: 28px;
  }

  .cagcheck-media {
    width: 100%;
  }

  .media-frame {
    padding: 7px;
    border-radius: 21px;
  }

  .media-frame img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: contain;
  }

  .media-badge {
    position: static;
    display: block;
    width: 100%;
    max-width: none;
    margin: 10px auto 0;
    transform: none;
    border-radius: 14px;
    white-space: normal;
  }

  .feature-list {
    gap: 8px;
    margin-top: 20px;
  }

  .feature-list article {
    padding: 13px;
    border-radius: 15px;
    backdrop-filter: none;
  }

  .capability-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .capability-row > div {
    min-height: 72px;
    display: grid;
    place-content: center;
  }

  .legal-badges article {
    flex: 0 0 min(82vw, 340px);
    min-height: 258px;
    padding: 20px;
    border-radius: 19px;
    box-shadow: 0 1px 2px rgba(10, 29, 61, .05);
    scroll-snap-align: start;
  }

  .document-grid {
    margin-top: 17px;
  }

  .document-card,
  .document-wide {
    flex: 0 0 min(86vw, 360px);
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 8px;
    border-radius: 19px;
    box-shadow: 0 1px 2px rgba(10, 29, 61, .05);
    scroll-snap-align: start;
  }

  .document-card:hover {
    transform: none;
  }

  .document-image {
    display: grid;
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
    place-items: center;
    padding: 8px;
    border-radius: 14px;
    background: #f2f4f7;
  }

  .document-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .document-info {
    min-height: 76px;
    justify-content: center;
    padding: 12px;
  }

  .tax-note {
    grid-template-columns: 58px 1fr;
    gap: 13px;
    padding: 18px;
    border-radius: 19px;
  }

  .tax-note h3 {
    font-size: 17px;
  }

  .tax-note p {
    font-size: 11.5px;
  }

  .plan-card {
    flex: 0 0 min(86vw, 370px);
    min-height: 520px;
    padding: 21px;
    border-radius: 20px;
    box-shadow: 0 1px 2px rgba(10, 29, 61, .05);
    scroll-snap-align: start;
  }

  .plan-featured {
    order: -1;
    transform: none;
  }

  .ecosystem-card,
  .ecosystem-card:first-child {
    flex: 0 0 min(88vw, 380px);
    display: flex;
    min-height: 0;
    flex-direction: column;
    grid-column: auto;
    border-radius: 20px;
    background: #fff;
    scroll-snap-align: start;
  }

  .ecosystem-card:hover {
    transform: none;
  }

  .ecosystem-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }

  .ecosystem-card:hover img {
    transform: none;
  }

  .ecosystem-card > span {
    position: static;
    margin: 0;
    padding: 13px 15px;
    border: 0;
    border-top: 1px solid #e5e9ef;
    border-radius: 0;
    color: var(--navy-950);
    background: #fff;
    backdrop-filter: none;
  }

  .ecosystem-card small {
    color: var(--muted);
  }

  .faq-list details {
    border-radius: 16px;
  }

  .faq-list summary {
    min-height: 56px;
  }

  .final-cta {
    margin-top: 8px;
  }

  .site-footer {
    margin-top: 8px;
  }

  .mobile-action-bar {
    grid-template-columns: .82fr 1.18fr;
    min-height: 64px;
    padding: 5px;
    border-radius: 18px;
    background: rgba(7, 21, 45, .97);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 8px;
    min-width: 0;
    padding: 7px 10px;
  }

  .mobile-action-bar i {
    grid-row: 1 / 3;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    align-self: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    font-size: 15px;
    font-style: normal;
  }

  .mobile-action-bar span,
  .mobile-action-bar b {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-action-bar span {
    font-size: 8.5px;
  }

  .mobile-action-bar b {
    margin-top: 1px;
    font-size: 11.5px;
  }

  .document-dialog {
    width: 100%;
    max-height: 94svh;
    margin: auto 0 0;
    border-radius: 24px 24px 0 0;
  }

  .dialog-shell {
    max-height: 94svh;
    border-radius: 24px 24px 0 0;
  }

  .dialog-image-wrap {
    max-height: 73svh;
    padding: 12px;
    overflow: auto;
  }

  .dialog-image-wrap img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .dialog-copy {
    padding: 18px 20px 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 16px, 520px);
    --header-height: 60px;
  }

  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .brand img {
    width: 158px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 12px;
  }

  .mobile-tabs {
    padding-inline: 8px;
  }

  .hero-copy {
    padding: 17px;
  }

  .hero h1 {
    font-size: clamp(33px, 9.3vw, 40px);
  }

  .offer-chip {
    min-height: 138px;
    padding: 12px;
  }

  .offer-chip strong {
    font-size: clamp(29px, 8.3vw, 35px);
  }

  .lead-panel {
    padding: 14px;
  }

  .project-price-note {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }

  .project-price-icon {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 16px;
  }

  .project-price-note p {
    font-size: 10px;
  }

  .order-code-box {
    display: grid;
    gap: 5px;
    padding: 10px;
  }

  .order-code-box small {
    width: auto;
    text-align: left;
  }

  .estimate-box > div {
    padding: 12px 9px;
  }

  .estimate-box span {
    font-size: 8.5px;
  }

  .estimate-box strong {
    font-size: 16px;
  }

  .section {
    padding: 40px 0;
  }

  .value-card,
  .legal-badges article {
    flex-basis: 84vw;
  }

  .document-card,
  .document-wide,
  .plan-card {
    flex-basis: 88vw;
  }

  .ecosystem-card,
  .ecosystem-card:first-child {
    flex-basis: 90vw;
  }

  .process-panel {
    padding: 17px;
  }

  .feature-list article {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .feature-list article > span {
    width: 36px;
    height: 36px;
  }

  .tax-note {
    grid-template-columns: 1fr;
  }

  .tax-icon {
    width: 52px;
    height: 52px;
  }

  .mobile-action-bar {
    left: 6px;
    right: 6px;
    bottom: calc(5px + env(safe-area-inset-bottom));
  }

  .cookie-banner {
    bottom: calc(79px + env(safe-area-inset-bottom));
  }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .offer-chip:hover,
  .value-card:hover,
  .document-card:hover,
  .ecosystem-card:hover {
    transform: none;
  }
}

/* Mobile overflow guard */
@media (max-width: 820px) {
  .hero-copy,
  .lead-panel,
  .hero-grid > *,
  .panel-topline > *,
  .form-grid > *,
  .estimate-box > * {
    min-width: 0;
    max-width: 100%;
  }

  .hero-trust {
    margin-right: 0;
    margin-left: 0;
  }

  .value-grid,
  .legal-badges,
  .document-grid,
  .plan-grid,
  .ecosystem-gallery {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

/* Tránh nhảy vị trí khi bấm tab/anchor trên điện thoại; ảnh vẫn lazy-load. */
@media (max-width: 820px) {
  .value-grid,
  .cagcheck-grid,
  .legal-badges,
  .document-grid,
  .plan-grid,
  .ecosystem-gallery,
  .faq-grid {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
  }
}

@media (max-width: 820px) {
  .section[id],
  .lead-panel {
    scroll-margin-top: 8px;
  }
}

@media (max-width: 820px) {
  .mobile-action-bar {
    transition: transform .2s ease, opacity .2s ease;
    will-change: transform;
  }

  .mobile-action-bar.is-hidden {
    transform: translateY(calc(100% + 18px));
    opacity: 0;
    pointer-events: none;
  }
}

/* ===== V6: Zalo CAG PRO® Team + CAG Check external + trạng thái form rõ ràng ===== */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  white-space: nowrap;
}

.header-contact span {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-contact strong {
  color: var(--navy-950);
  font-size: 15px;
  letter-spacing: -.01em;
}

.header-zalo strong {
  color: #0068ff;
}

.hero-support-line {
  margin: 12px 0 0;
  color: #6a768a;
  font-size: 12px;
  font-weight: 750;
}

.hero-support-line a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 4px;
  color: #005ad8;
  text-decoration: none;
}

.hero-support-line a:hover {
  text-decoration: underline;
}

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

.form-contact-shortcuts a {
  display: flex;
  min-width: 0;
  min-height: 48px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid #dbe4f0;
  border-radius: 12px;
  color: #45536b;
  background: #f7f9fc;
  text-decoration: none;
  line-height: 1.2;
}

.form-contact-shortcuts a:first-child {
  color: #0059d6;
  border-color: #cbdcff;
  background: #edf5ff;
}

.form-contact-shortcuts span {
  overflow: hidden;
  font-size: 9px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-contact-shortcuts b {
  margin-top: 3px;
  font-size: 12px;
}

.form-status > span {
  display: block;
}

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

.form-status-actions a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 9px;
  border: 1px solid rgba(164, 20, 36, .2);
  border-radius: 10px;
  color: #8e1321;
  background: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 10px;
  line-height: 1.25;
}

.form-status-actions a:first-child {
  color: #0058cf;
  border-color: #bcd2ff;
  background: #f2f7ff;
}

.form-status small {
  display: block;
  margin-top: 8px;
  color: #7b5560;
  font-size: 9.5px;
  font-weight: 650;
}

.cagcheck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button-zalo-light {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: #0068ff;
  box-shadow: 0 14px 30px rgba(0,104,255,.23);
}

.floating-zalo {
  position: fixed;
  right: 18px;
  bottom: 82px;
  z-index: 70;
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 15px 0 9px;
  border-radius: 999px;
  color: #fff;
  background: #0068ff;
  box-shadow: 0 18px 40px rgba(0, 104, 255, .28);
  text-decoration: none;
  transition: transform .2s ease;
}

.floating-zalo:hover {
  transform: translateY(-3px);
}

.floating-zalo span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
}

.floating-zalo b {
  font-size: 12px;
}

@media (max-width: 1450px) and (min-width: 1101px) {
  .header-zalo {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero-support-line {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 11px;
    font-size: 11px;
  }

  .hero-support-line a {
    margin-left: 0;
  }

  .form-contact-shortcuts {
    gap: 7px;
  }

  .cagcheck-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cagcheck-actions .button {
    width: 100%;
  }

  .floating-zalo,
  .floating-phone {
    display: none;
  }

  .mobile-action-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    min-height: 68px;
    padding: 5px;
  }

  .mobile-action-bar a,
  .mobile-action-bar a + a {
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 5px;
    min-width: 0;
    padding: 6px 5px;
    border-radius: 12px;
    background: transparent;
  }

  .mobile-action-bar .mobile-zalo {
    background: #0068ff;
  }

  .mobile-action-bar .mobile-quote {
    background: var(--red-600);
  }

  .mobile-action-bar i {
    grid-row: 1 / 3;
    width: 27px;
    height: 27px;
    border-radius: 9px;
    font-size: 13px;
  }

  .mobile-action-bar span {
    color: #c8d3e4;
    font-size: 7.8px;
  }

  .mobile-action-bar .mobile-zalo span,
  .mobile-action-bar .mobile-quote span {
    color: rgba(255,255,255,.84);
  }

  .mobile-action-bar b {
    margin-top: 1px;
    font-size: 9.8px;
  }

  .form-status-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .mobile-action-bar {
    left: 4px;
    right: 4px;
    gap: 2px;
  }

  .mobile-action-bar a,
  .mobile-action-bar a + a {
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 4px;
    padding-inline: 4px;
  }

  .mobile-action-bar i {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .mobile-action-bar span {
    font-size: 7.2px;
  }

  .mobile-action-bar b {
    font-size: 8.8px;
  }
}

/* Microsoft market reference — compact and intentionally near the footer */
.market-reference-section {
  padding: clamp(20px, 3vw, 40px) 0 clamp(62px, 6vw, 104px);
  background: #fff;
}

.market-reference-card {
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 4%, rgba(36, 103, 215, .10), transparent 31%),
    linear-gradient(145deg, #fbfdff 0%, #f5f8fd 100%);
  box-shadow: 0 18px 50px rgba(13, 45, 88, .08);
}

.market-reference-card > summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 146px;
  padding: 28px 34px;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.market-reference-card > summary::-webkit-details-marker {
  display: none;
}

.market-reference-card[open] > summary {
  border-bottom: 1px solid #dfe6f0;
  background: rgba(255, 255, 255, .62);
}

.market-reference-heading {
  min-width: 0;
}

.market-kicker,
.market-card-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .105em;
}

.market-reference-heading h2 {
  max-width: 1040px;
  margin: 8px 0 7px;
  color: var(--navy-950);
  font-size: clamp(24px, 2.15vw, 38px);
  line-height: 1.12;
  letter-spacing: -.032em;
}

.market-reference-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.market-reference-toggle {
  display: inline-flex;
  min-width: 154px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 13px 0 18px;
  border: 1px solid #ccd9ec;
  border-radius: 999px;
  color: var(--navy-850);
  background: #fff;
  box-shadow: 0 10px 24px rgba(13, 45, 88, .08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.market-reference-toggle i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
  transition: transform .22s ease;
}

.market-reference-card[open] .market-reference-toggle i {
  transform: rotate(45deg);
}

.market-reference-body {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 24px 34px 32px;
}

.market-channel-card,
.market-price-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid #e1e8f2;
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
}

.market-channel-card h3 {
  margin: 10px 0 9px;
  color: var(--navy-950);
  font-size: 24px;
  letter-spacing: -.025em;
}

.market-channel-card p {
  margin: 0;
  color: #59667d;
  font-size: 14px;
  line-height: 1.72;
}

.market-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.market-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #ccd9ed;
  border-radius: 12px;
  color: var(--navy-850);
  background: #f8fbff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.market-links a:hover {
  transform: translateY(-2px);
  border-color: #9eb8df;
  background: #fff;
}

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

.market-price-item {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border: 1px solid #dce5f1;
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f5f8fd);
}

.market-price-item > span {
  color: #60708a;
  font-size: 12px;
  font-weight: 850;
}

.market-price-item strong {
  display: block;
  margin: 7px 0 3px;
  color: var(--navy-950);
  font-size: clamp(21px, 1.6vw, 29px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.market-price-item small {
  color: #7d899c;
  font-size: 10.5px;
  line-height: 1.4;
}

.market-reference-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid #eadcac;
  border-radius: 16px;
  color: #64552d;
  background: #fffbeb;
}

.market-reference-note > span {
  font-size: 17px;
  line-height: 1.35;
}

.market-reference-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 820px) {
  .market-reference-section {
    padding: 10px 0 54px;
  }

  .market-reference-card {
    border-radius: 20px;
  }

  .market-reference-card > summary {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: 0;
    padding: 20px 18px;
  }

  .market-reference-heading h2 {
    margin-top: 7px;
    font-size: 23px;
    line-height: 1.16;
  }

  .market-reference-heading p {
    font-size: 12px;
    line-height: 1.55;
  }

  .market-reference-toggle {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    justify-content: space-between;
    padding-left: 14px;
  }

  .market-reference-body {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px 16px;
  }

  .market-channel-card,
  .market-price-card {
    padding: 17px;
    border-radius: 16px;
  }

  .market-channel-card h3 {
    font-size: 21px;
  }

  .market-channel-card p {
    font-size: 12px;
    line-height: 1.62;
  }

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

  .market-links a {
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 10px;
    text-align: center;
  }

  .market-price-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-price-item {
    min-height: 106px;
    padding: 15px;
  }

  .market-price-item strong {
    font-size: 22px;
  }

  .market-reference-note {
    gap: 8px;
    padding: 13px;
  }

  .market-reference-note p {
    font-size: 10.5px;
    line-height: 1.55;
  }
}

@media (max-width: 360px) {
  .market-links {
    grid-template-columns: 1fr;
  }
}


.market-reference-toggle > span {
  font-size: 0;
}

.market-reference-toggle > span::before {
  content: "Xem tổng quan";
  font-size: 12px;
}

.market-reference-card[open] .market-reference-toggle > span::before {
  content: "Thu gọn";
}

/* =========================================================
   V9 — Header logo safety + Microsoft software catalogue
   ========================================================= */

/* Keep the complete CAG PRO® lockup visible on desktop widths. */
.site-header,
.header-inner,
.brand,
.brand img {
  overflow: visible;
}

.header-inner {
  grid-template-columns: 248px minmax(0, 1fr) auto;
  gap: 26px;
}

.brand {
  position: relative;
  z-index: 2;
  width: 248px;
  min-width: 248px;
  max-width: 248px;
  padding: 0 12px 0 0;
}

.brand img {
  width: 248px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: left center;
  clip-path: none;
}

.footer-brand img {
  display: block;
  width: min(100%, 380px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  padding-right: 12px;
  overflow: visible;
}

@media (max-width: 1500px) {
  .header-inner {
    grid-template-columns: 232px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .brand {
    width: 232px;
    min-width: 232px;
    max-width: 232px;
  }

  .brand img {
    width: 232px;
  }

  .header-zalo {
    display: none;
  }

  .main-nav {
    gap: clamp(14px, 1.35vw, 22px);
  }
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 196px minmax(0, 1fr) auto;
  }

  .brand {
    width: 196px;
    min-width: 196px;
    max-width: 196px;
    padding-right: 8px;
  }

  .brand img {
    width: 196px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    grid-template-columns: 158px minmax(0, 1fr) auto;
  }

  .brand {
    width: 158px;
    min-width: 158px;
    max-width: 158px;
    padding-right: 5px;
  }

  .brand img {
    width: 158px;
  }
}

@media (max-width: 350px) {
  .header-inner {
    grid-template-columns: 146px minmax(0, 1fr) auto;
  }

  .brand {
    width: 146px;
    min-width: 146px;
    max-width: 146px;
  }

  .brand img {
    width: 146px;
  }
}

.software-catalog-section {
  scroll-margin-top: calc(var(--header-height) + 58px);
  padding: clamp(42px, 4vw, 64px) 0 78px;
  border-bottom: 1px solid #e7edf5;
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.software-catalog-card {
  overflow: hidden;
  border: 1px solid #d8e3f2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(36, 103, 215, 0.11), transparent 29%),
    linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
  box-shadow: 0 24px 66px rgba(14, 35, 70, 0.09);
}

.software-catalog-card > summary {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 30px 34px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.software-catalog-card > summary::-webkit-details-marker {
  display: none;
}

.software-catalog-card[open] > summary {
  border-bottom: 1px solid #dbe5f3;
  background: rgba(255, 255, 255, 0.72);
}

.software-catalog-heading {
  min-width: 0;
}

.software-kicker,
.software-card-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.software-catalog-heading h2 {
  max-width: 1040px;
  margin: 8px 0 0;
  color: var(--navy-950);
  font-size: clamp(28px, 2.25vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.software-catalog-heading p {
  max-width: 1080px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.software-catalog-toggle {
  min-width: 158px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 10px 0 18px;
  border: 1px solid #c8d8ef;
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(14, 35, 70, 0.06);
}

.software-catalog-toggle i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-600);
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  transition: transform 0.2s ease;
}

.software-catalog-card[open] .software-catalog-toggle i {
  transform: rotate(45deg);
}

.software-catalog-toggle > span {
  font-size: 0;
}

.software-catalog-toggle > span::before {
  content: "Xem danh mục";
  font-size: 12px;
}

.software-catalog-card[open] .software-catalog-toggle > span::before {
  content: "Thu gọn";
}

.software-catalog-body {
  display: grid;
  gap: 18px;
  padding: 22px 24px 28px;
}

.software-group {
  padding: 26px;
  border: 1px solid #dfe7f2;
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.94);
}

.software-group-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.software-group-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #eaf2ff;
  font-size: 23px;
}

.software-group-heading h3 {
  margin: 6px 0 0;
  color: var(--navy-950);
  font-size: clamp(23px, 1.65vw, 31px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.software-group-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.server-product-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid #d9e4f1;
  border-radius: 19px;
  background: #f9fbff;
}

.server-product-card.server-2022 {
  border-color: #c9d9f2;
  background: linear-gradient(145deg, #f7fbff, #edf5ff);
}

.server-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dfe7f2;
}

.server-year {
  min-width: 74px;
  min-height: 36px;
  display: inline-grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy-850);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.server-2022 .server-year {
  background: var(--blue-600);
}

.server-price {
  display: grid;
  justify-items: end;
  text-align: right;
}

.server-price small {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.server-price strong {
  margin-top: 3px;
  color: var(--red-650);
  font-size: clamp(24px, 1.85vw, 34px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.server-price span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.server-product-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.server-product-list li {
  position: relative;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding-left: 22px;
}

.server-product-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green-600);
  font-size: 9px;
  font-weight: 900;
}

.server-product-list b {
  color: var(--navy-950);
  font-size: 14px;
  line-height: 1.4;
}

.server-product-list span {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.55;
}

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

.server-license-facts article {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #e0e8f2;
  border-radius: 16px;
  background: #fff;
}

.server-license-facts article > span {
  flex: 0 0 auto;
  font-size: 20px;
}

.server-license-facts b {
  color: var(--navy-900);
  font-size: 13px;
}

.server-license-facts p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.58;
}

.workstation-software-group {
  background: linear-gradient(145deg, #fff, #fff7f8);
}

.workstation-icon {
  background: #fff0f1;
}

.workstation-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #edd8db;
  border-radius: 19px;
  background: #fff;
}

.workstation-product-main {
  min-width: 0;
}

.workstation-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.workstation-product-tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #d6e2f0;
  border-radius: 999px;
  color: var(--navy-850);
  background: #f7faff;
  font-size: 10.5px;
  font-weight: 800;
}

.workstation-product-main h4 {
  margin: 18px 0 0;
  color: var(--navy-950);
  font-size: 20px;
}

.workstation-feature-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.workstation-feature-list li {
  position: relative;
  padding-left: 23px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.65;
}

.workstation-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red-600);
  font-size: 9px;
  font-weight: 900;
}

.workstation-feature-list b {
  color: var(--navy-900);
}

.workstation-quote-box {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy-900), var(--navy-800));
}

.workstation-quote-box > span {
  color: #b9cae5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.workstation-quote-box > strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.workstation-quote-box p {
  margin: 11px 0 18px;
  color: #d7e2f3;
  font-size: 11.5px;
  line-height: 1.6;
}

.workstation-quote-box .button {
  width: 100%;
  min-height: 48px;
}

.software-zalo-link {
  display: inline-flex;
  justify-content: center;
  margin-top: 13px;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
}

.software-zalo-link:hover {
  text-decoration: underline;
}

.software-transparency-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid #ecd18c;
  border-radius: 17px;
  background: #fff9e9;
}

.software-transparency-note > span {
  flex: 0 0 auto;
  font-size: 20px;
}

.software-transparency-note p {
  margin: 0;
  color: #6f5a2e;
  font-size: 12px;
  line-height: 1.65;
}

@supports (content-visibility: auto) {
  .software-catalog-body {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1200px;
  }
}

@media (max-width: 980px) {
  .server-license-facts {
    grid-template-columns: 1fr;
  }

  .workstation-product-card {
    grid-template-columns: 1fr;
  }

  .workstation-quote-box {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .software-catalog-section {
    padding: 28px 0 54px;
  }

  .software-catalog-card {
    border-radius: 20px;
  }

  .software-catalog-card > summary {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px 18px;
  }

  .software-catalog-heading h2 {
    margin-top: 7px;
    font-size: 23px;
    line-height: 1.16;
  }

  .software-catalog-heading p {
    font-size: 12px;
    line-height: 1.55;
  }

  .software-catalog-toggle {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding-left: 14px;
  }

  .software-catalog-body {
    gap: 10px;
    padding: 12px 12px 16px;
  }

  .software-group {
    padding: 17px;
    border-radius: 16px;
  }

  .software-group-heading {
    gap: 11px;
  }

  .software-group-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
    font-size: 19px;
  }

  .software-card-label {
    font-size: 9px;
  }

  .software-group-heading h3 {
    margin-top: 4px;
    font-size: 19px;
    line-height: 1.22;
  }

  .software-group-heading p {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.55;
  }

  .server-product-grid {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 16px;
  }

  .server-product-card {
    padding: 16px;
    border-radius: 15px;
  }

  .server-product-top {
    gap: 10px;
    padding-bottom: 13px;
  }

  .server-year {
    min-width: 64px;
    min-height: 32px;
    font-size: 13px;
  }

  .server-price strong {
    font-size: 23px;
  }

  .server-product-list {
    gap: 10px;
    margin-top: 13px;
  }

  .server-product-list b {
    font-size: 12px;
  }

  .server-product-list span {
    font-size: 10.5px;
  }

  .server-license-facts {
    gap: 8px;
    margin-top: 9px;
  }

  .server-license-facts article {
    padding: 13px;
    border-radius: 14px;
  }

  .server-license-facts p {
    font-size: 10.5px;
    line-height: 1.55;
  }

  .workstation-product-card {
    gap: 12px;
    margin-top: 16px;
    padding: 15px;
    border-radius: 15px;
  }

  .workstation-product-tags {
    gap: 6px;
  }

  .workstation-product-tags span {
    min-height: 27px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .workstation-product-main h4 {
    margin-top: 15px;
    font-size: 17px;
  }

  .workstation-feature-list {
    gap: 8px;
    margin-top: 11px;
  }

  .workstation-feature-list li {
    padding-left: 21px;
    font-size: 10.5px;
    line-height: 1.58;
  }

  .workstation-quote-box {
    padding: 17px;
    border-radius: 15px;
  }

  .workstation-quote-box > strong {
    font-size: 30px;
  }

  .workstation-quote-box p {
    font-size: 10.5px;
  }

  .software-transparency-note {
    gap: 8px;
    padding: 13px;
  }

  .software-transparency-note p {
    font-size: 10.5px;
    line-height: 1.55;
  }
}

@media (max-width: 390px) {
  .server-product-top {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .server-price strong {
    font-size: 21px;
  }
}
