:root {
  --bg: #f7fafc;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-soft: #eef4fa;
  --ink: #0f172a;
  --muted: #475569;
  --line: rgba(180, 199, 219, 0.7);
  --line-strong: rgba(148, 174, 202, 0.9);
  --brand: #0ea5e9;
  --brand-dark: #0d86c799;
  --accent: rgb(38, 198, 115);
  --brand-soft: #e0f2fe;
  --mint-soft: #dcfce7;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 14px 30px rgba(29, 47, 90, 0.4);
  --shadow-md: 0 24px 50px rgba(29, 47, 90, 0.4);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  position: relative;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 520px at 0% -8%, #dff3ff 0%, transparent 60%),
    radial-gradient(900px 400px at 100% 0%, #e6fff2 0%, transparent 55%),
    radial-gradient(700px 300px at 50% 45%, rgba(14, 165, 233, 0.05) 0%, transparent 70%),
    var(--bg);
  line-height: 1.6;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  z-index: -2;
  pointer-events: none;
  transform: translateX(-50%);
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 252, 0) 0%,
      rgba(247, 250, 252, 0.04) 18%,
      rgba(247, 250, 252, 0.18) 42%,
      rgba(247, 250, 252, 0.26) 64%,
      rgba(247, 250, 252, 0.08) 100%
    ),
    url("https://unsplash.com/photos/tOmHyJ3_NZY/download?force=true&w=2200");
  background-repeat: no-repeat;
  background-size: 100vw auto;
  background-position: center bottom;
  opacity: 0.88;
}

body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 0%,
    rgb(243, 252, 255) 60%,
    rgba(236, 251, 255, 0.5) 80%,
    rgba(229, 249, 255, 0.3) 100%
  );
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), 94vw);
  margin: 0 auto;
}

main {
  position: relative;
}

.section {
  padding: clamp(2.8rem, 6vw, 5.3rem) 0;
  position: relative;
}

main > .section {
  position: relative;
  z-index: 1;
}

.muted {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.service-wrapper {
  overflow: hidden;
}

#service {
  padding: clamp(0.5rem, 2vw, 1.7rem) 0 clamp(2.8rem, 6vw, 5.3rem) 0;
  position: relative;
  background:
    linear-gradient(180deg, 
      rgba(249, 253, 255, 0.0) 0%, 
      rgba(244, 253, 255, 0.0) 40%, 
      rgb(244, 253, 255) 100%
    ),
    url("./images/team_review_bms_screen_2.png");
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin: 62px 5vw 0 5vw;
  box-shadow: 0 -20px 40px  rgba(29, 47, 90, 0.3);
}

#service .section-spacer {
  padding-bottom: 280px;
}

#service .container .section-heading h2 {
  margin-top: 14px;
  color: var(--accent);
  text-shadow: 1px 1px 5px rgba(127, 127, 127, 0.5);
}

/* #service .glass-copy {
  display: inline-block;
  padding: 0.6rem 0.8rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px);
  color: #243447;
} */

#service .glass-copy {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: -42px;
  left: 12px;
  z-index: 100;
  background: #fff;
  color: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.7rem;
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(247, 250, 252, 0.7);
  border-bottom: 1px solid rgba(180, 199, 219, 0.45);
}

.nav-wrap {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  flex-wrap: wrap;
  gap: 1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #19b8f5 0%, #0ea5e9 52%, #0284c7 100%);
  color: #fff;
  padding: 0.78rem 1.05rem;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.22);
}

.btn:hover {
  background: linear-gradient(135deg, #10a8e2 0%, #0891cf 52%, #0369a1 100%);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 0.8rem;
  font-size: 0.88rem;
  margin-left: 1rem;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(3, 105, 161, 0.18);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.btn-ghost:hover {
  background: #ffffff;
}

button.btn {
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero {
  padding: clamp(1.4rem, 3vw, 2.7rem) 0 clamp(2.8rem, 6vw, 5.3rem) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.kicker {
  margin: 0 0 0.4rem;
  color: #0c7eb0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.9rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.6rem, 3.7vw, 2.55rem);
}

h3 {
  font-size: 1.13rem;
}

.lede {
  margin-top: 0.9rem;
  max-width: 65ch;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.cta-row {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.note {
  margin-top: 0.9rem;
  color: var(--accent);
  font-weight: 700;
}

.hero-card {
  position: relative;
  background: url("./images/working.png");
  background-size: cover;
  background-position: center calc(50% - 2px);
  border: 1px solid rgba(174, 201, 226, 0.58);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.35rem;
  min-height: 34rem;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.18); */
  pointer-events: none;
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-badge {
  position: absolute;
  right: 22px;
  top: 18px;
  max-width: 220px;
  padding: 0.4rem 0.8rem;
  border-radius: 14px;
  color: var(--ink);
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-card ul {
  margin: 0;
  padding: 0;
  padding-top: 240px;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.hero-card li {
  border: 1px solid rgba(77, 85, 93, 0.6);
  background: rgba(27, 27, 27, 0.4);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.8rem;
}

.hero-card strong {
  color: #fff;
  display: block;
  font-size: 1.02rem;
}

.hero-card span {
  color: #efefef;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 72ch;
}

.section-heading p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.section-heading h2 {
  max-width: 42ch;
}

.card-grid {
  margin-bottom: 80px;
  display: grid;
  gap: 2rem;
}

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

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

.card {
  --card-offset: 0px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(252, 254, 255, 0.4) 100%);
  border: 1px solid rgba(197, 215, 231, 0.12);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.15rem;
  backdrop-filter: blur(12px);
  transform: translateY(var(--card-offset));
  backdrop-filter: blur(4px);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.card p {
  margin: 0 0 0.25rem 0;
  color: var(--muted);
  max-width: 40ch;
}

.three-col .card:nth-child(2) {
  --card-offset: 120px;
}

.three-col .card:nth-child(3) {
  --card-offset: 80px;
}

.highlights-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-metric {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  color: #075985;
  line-height: 1.35;
}

.highlights-subgrid {
  margin: 2rem 0 60px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-highlight {
  background:
    linear-gradient(180deg, rgba(244, 251, 255, 0.94) 0%, rgba(247, 255, 251, 0.94) 100%);
  border: 1px solid rgba(196, 221, 234, 0.85);
  border-top-color: rgba(38, 198, 115, 0.45);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.mini-highlight h3 {
  font-size: 1rem;
}

.mini-highlight p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}

.checklist {
  position: relative;
  margin-top: -106px;
  max-width: 34rem;
  z-index: 10;
}

.checklist ol {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.checklist li {
  position: relative;
  width: min(100%, 31rem);
  padding: 1.8rem 1rem 0.7rem 1.2rem;
  border: 1px solid rgba(196, 221, 234, 0.85);
  border-top-color: rgba(38, 198, 115, 0.45);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(244, 251, 255, 0.94) 0%, rgba(247, 255, 251, 0.94) 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  transform: none;
  color: var(--ink);
  transition: transform 0.3s ease, box-shadow 0.7s ease, border-color 0.4s ease;
}

.checklist li:hover {
  border-color: rgba(38, 198, 115, 0.38);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
  z-index: 2;
}

.checklist li strong {
  position: absolute;
  left: 1.2rem;
  top: 8px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--brand-dark);
  opacity: 0.5;
}

#compliance {
  padding-bottom: 50px;
}
.compliance-copy {
  position: sticky;
  top: 7rem;
  justify-self: end;
  max-width: 34rem;
  text-align: right;
}

.compliance-copy .kicker {
  justify-self: end;
}

.compliance-copy p {
  margin-left: auto;
}
#benefits {
  padding-top: 120px;
}

#benefits .container {
  position: relative;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  border-top: 1px solid var(--brand-dark);
  border-left: 1px solid var(--brand-dark);
  border-right: 1px solid var(--brand-dark);
  padding: 8px 24px 24px 24px;
  transition: box-shadow 2s ease;
}

#benefits .container:hover {
  box-shadow: 0 0 40px rgba(123, 165, 204, 0.4), 0 0 40px inset rgba(123, 165, 204, 0.4);
}

#benefits .container::before {
  content: "";
  position: absolute;
  top: -140px;
  right: 0;
  height: 340px;
  width: 340px;
  background: url("./images/building_systems_2.png") no-repeat center center;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
}

/* #benefits .container::after {
  content: "";
  position: absolute;
  top: -44px;
  right: 220px;
  height: 86px;
  width: 86px;
  background: url("./images/b_rating.png") no-repeat center center;
  background-size: contain;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
} */

.final-cta {
  padding: 0 0 60px 0;
  margin-top: -40px;
}

.final-card {
  background: linear-gradient(140deg, #0ea5e9 0%, #0284c7 60%, #0369a1 100%);
  color: #fff;
  border-radius: 28px;
  padding: 30px 36px;
  box-shadow: 0 35px 85px rgba(3, 105, 161, 0.48);
  position: relative;
  overflow: hidden;
}

.final-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.final-card .kicker {
  margin: 0;
  color: #d3f1ff;
}

.final-card p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 65ch;
}

.final-body {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: end;
}

.final-body p {
  margin: 0;
}

.final-card .btn {
  margin-top: 1rem;
  background: #fff;
  color: #0a3b53;
}

.final-card .btn:hover {
  background: #ecf8ff;
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.final-actions .btn {
  margin-top: 0;
}

.final-link {
  color: #dff4ff;
  font-weight: 600;
  text-decoration: none;
}

.final-link:hover {
  color: #ffffff;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: rgba(246, 250, 255, 0.82);
}

.foot-wrap {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1.8fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand,
.footer-contact,
.footer-updates {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  color: var(--ink);
  text-decoration: none;
}

.footer-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-logo-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-logo-row strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.footer-logo-subtitle {
  display: block;
  padding-left: 0;
  margin-top: 0.15rem;
  color: #5e748b;
  font-size: 0.9rem;
}

.footer-socials {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #43627f;
}

.footer-socials img,
.footer-socials svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: currentColor;
}

.footer-heading {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
}

.footer-contact p,
.footer-updates p {
  margin: 0;
  color: #57708a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-label {
  margin-bottom: 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a90a7;
}

.footer-contact a {
  color: var(--ink);
  text-decoration: none;
}

.footer-inline {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: var(--ink);
}

.footer-contact p.footer-inline,
.footer-inline span {
  color: var(--ink);
}

.footer-inline img {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

.footer-subscribe {
  margin-top: 1rem;
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 24rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.footer-subscribe input,
.footer-subscribe button {
  border: 0;
  font: inherit;
}

.footer-subscribe input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.4rem 0.8rem;
  background: transparent;
  color: var(--ink);
}

.footer-subscribe input::placeholder {
  color: #7a90a7;
}

.footer-subscribe input:focus {
  outline: none;
}

.footer-subscribe button {
  flex: 0 0 auto;
  padding: 0 0.9rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.footer-subscribe button:hover {
  background: #20a861;
}

.submission-feedback {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 174, 202, 0.45);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}

.submission-feedback-inline {
  max-width: 24rem;
}

.submission-feedback.is-visible {
  display: block;
}

.submission-feedback.is-success {
  border-color: rgba(38, 198, 115, 0.42);
  background: rgba(241, 252, 246, 0.92);
}

.submission-feedback.is-error {
  border-color: rgba(225, 29, 72, 0.35);
  background: rgba(255, 241, 242, 0.92);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(164, 188, 209, 0.34);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #57708a;
  font-size: 0.9rem;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

button,
a {
  transition: all 0.2s ease;
}

.card,
.mini-highlight,
.hero-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.mini-highlight:hover,
.hero-card:hover {
  transform: translateY(calc(var(--card-offset, 0px) - 4px));
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(123, 165, 204, 0.95);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}


.contact-hero {
  padding-bottom: 0.4rem;
}

.contact-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: start;
}

.contact-info {
  width: fit-content;
  align-self: end;
  justify-self: end;
  padding: 1rem 4rem 1rem 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.4rem;
  align-items: start;
}

.contact-form-card {
  padding: 1.35rem;
}

.contact-card-head {
  margin-bottom: 1rem;
}

.contact-card-head p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 56ch;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.4rem;
}

.field span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #45627d;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(148, 174, 202, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.22);
  border-color: rgba(14, 165, 233, 0.7);
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: #55718c;
  font-size: 0.92rem;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-info p {
  margin: 0.3rem 0 0;
}

.contact-list {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 0.45rem;
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.legal-card {
  width: min(100%, 56rem);
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(148, 174, 202, 0.38);
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  transform: none;
  transition: none;
  margin: 0 auto;
}

.legal-card:hover {
  transform: none;
  box-shadow: none;
}

.legal-meta {
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(148, 174, 202, 0.3);
  color: #64748b;
  font-size: 0.92rem;
}

.legal-content {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}

.legal-content section {
  display: grid;
  gap: 0.5rem;
  width: 100%;
}

.legal-content h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.01em;
  max-width: none;
}

.legal-content p,
.legal-content li {
  color: #334155;
  line-height: 1.72;
  max-width: none;
  width: 100%;
}

.legal-content ul {
  margin: 0.15rem 0 0;
  padding-left: 1.15rem;
  width: 100%;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.contact-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(220, 252, 231, 0.88);
  border: 1px solid rgba(38, 198, 115, 0.35);
  color: #18794b;
  font-size: 0.88rem;
  font-weight: 700;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: end;
}

.case-summary {
  width: fit-content;
  justify-self: end;
  padding: 1rem 2.5rem 1rem 1.5rem;
  border-color: rgba(38, 198, 115, 0.35);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

.case-copy {
  display: grid;
  gap: 1.25rem;
}

.case-points {
  display: grid;
  gap: 1rem;
}

.case-form-card {
  padding: 1.35rem;
}

.benefits-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.4rem;
  align-items: end;
}

.benefits-summary {
  width: fit-content;
  justify-self: end;
  padding: 1rem 2.5rem 1rem 1.5rem;
  border-color: rgba(38, 198, 115, 0.35);
}

.benefits-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  align-items: start;
}

.benefits-intro-card {
  padding: 1.35rem;
}

.benefits-points {
  display: grid;
  gap: 1rem;
}

.benefits-band .card-grid {
  margin-bottom: 0;
}

.benefits-band {
  margin-bottom: 100px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .benefits-hero,
  .benefits-layout,
  .case-hero,
  .case-layout,
  .contact-intro-grid,
  .contact-grid,
  .form-grid,
  .highlights-grid,
  .highlights-subgrid,
  .three-col,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .compliance-copy {
    position: static;
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .compliance-copy p {
    margin-left: 0;
  }

  .three-col .card:nth-child(2),
  .three-col .card:nth-child(3) {
    --card-offset: 0px;
  }

  .checklist {
    margin-top: 0;
    max-width: none;
  }

  .checklist li {
    width: 100%;
    transform: none;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    padding: 0.8rem 0;
  }

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

  .site-header .btn-small {
    justify-self: start;
  }

  h1 {
    max-width: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
