:root {
  --accent: #c61635;
  --button: #65bed2;
  --button-text: #000001;
  --copy: #555555;
  --dark: #333333;
  --dark-soft: #444444;
  --heading: #444444;
  --line: #e6e6e6;
  --muted: #e8e8e8;
  --panel: #f7f7f9;
  --panel-soft: #fafafa;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--copy);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Adamina", serif;
  font-weight: 400;
  line-height: 1.2;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  z-index: 1000;
  background: var(--white);
  border: 1px solid var(--line);
}

.container {
  width: min(calc(100% - 2rem), 1200px);
  margin: 0 auto;
}

.container--wide {
  width: min(calc(100% - 2rem), 1800px);
}

.container--narrow {
  width: min(calc(100% - 2rem), 920px);
}

.site-shell {
  min-height: 100vh;
}

.site-main {
  overflow: clip;
}

.site-header-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
}

.site-header--hero {
  padding-top: 1.1rem;
  padding-bottom: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #282828;
}

.brand__mark {
  display: block;
  width: 118px;
  max-width: 100%;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  color: #282828;
  padding: 0.625rem 0.9375rem 0.3125rem;
  font-size: 1.125rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav .is-active a {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: transparent;
  color: #333333;
  font: inherit;
  cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  display: block;
  width: 30px;
  height: 3px;
  background: #333333;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  content: "";
}

.nav-toggle__icon {
  position: relative;
}

.nav-toggle__icon::before {
  position: absolute;
  top: -8px;
}

.nav-toggle__icon::after {
  position: absolute;
  top: 8px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

.site-hero {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.site-hero__texture {
  position: absolute;
  inset: 0;
  background: url("../images/hero-bg.jpg") center / cover no-repeat;
}

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

.site-hero__body {
  display: grid;
  grid-template-columns: 52.97% 47.03%;
  align-items: stretch;
  gap: 0;
}

.hero-copy {
  max-width: 42rem;
  padding: 6.25rem 1.5rem 6.25rem 1.25rem;
}

.hero-copy__eyebrow {
  margin-bottom: 1.45rem;
  color: var(--button);
  font-size: clamp(1.05rem, 1.55vw, 1.625rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-copy__title {
  max-width: 17ch;
  margin-bottom: 1.35rem;
  color: #444444;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 2.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
}

.hero-copy__title span {
  display: block;
}

.hero-copy__summary {
  max-width: 28rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.hero-visual {
  min-height: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.flash-stack {
  padding-top: 1.5rem;
}

.flash-message {
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
}

.flash-message--success {
  background: rgba(101, 190, 210, 0.18);
  color: #245b66;
  border: 1px solid rgba(101, 190, 210, 0.45);
}

.flash-message--error {
  background: rgba(198, 22, 53, 0.1);
  color: #7b182b;
  border: 1px solid rgba(198, 22, 53, 0.28);
}

.content-section {
  padding: 5rem 0;
}

.content-section--soft {
  background: var(--panel-soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.split-section--intro {
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.split-section--lead {
  margin-top: 1rem;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

.intro-mark {
  display: flex;
  justify-content: center;
}

.intro-mark img {
  max-width: min(85%, 360px);
  border-radius: 28px;
  box-shadow: 0 22px 44px rgba(0, 25, 51, 0.16);
}

.section-logo {
  display: block;
  width: 112px;
  max-width: 100%;
  margin-bottom: 1rem;
}

.copy-block {
  min-width: 0;
}

.copy-block > *:last-child {
  margin-bottom: 0;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.page-lead {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading__title {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.12;
}

.section-heading__primary,
.section-heading__secondary {
  display: block;
}

.section-heading__line {
  display: block;
  width: 75px;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 40px;
  background: var(--accent);
}

.section-heading--center .section-heading__line {
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.feature-list--compact {
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  flex: 0 0 18px;
  width: 18px;
  height: 14px;
  margin-top: 0.45rem;
  background: url("../images/list.png") center / contain no-repeat;
  content: "";
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.625rem 0.9375rem;
  border: 0;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.button:hover,
.button:focus {
  background: var(--button);
  color: var(--button-text);
}

.button--hero {
  align-self: flex-start;
}

.image-frame img {
  width: 100%;
}

.image-frame {
  min-width: 0;
}

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

.centered-action {
  margin-top: 1rem;
  text-align: center;
}

.accordion {
  display: grid;
  gap: 1rem;
}

.accordion__item {
  border: 1px solid var(--line);
  background: var(--white);
}

.accordion__item summary {
  position: relative;
  padding: 1.1rem 1.25rem;
  list-style: none;
  cursor: pointer;
  color: var(--heading);
  font-family: "Adamina", serif;
  font-size: 1.65rem;
}

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

.accordion__item summary::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--copy);
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  content: "+";
}

.accordion__item[open] summary {
  border-bottom: 1px solid var(--line);
}

.product-hero {
  background: linear-gradient(135deg, #f7fbfa 0%, #ffffff 52%, #f2f7f9 100%);
  border-bottom: 1px solid var(--line);
}

.product-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 3rem;
  align-items: center;
}

.product-hero__copy h1 {
  margin-bottom: 1rem;
  color: #101820;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: 0;
}

.product-hero__copy p {
  max-width: 720px;
  font-size: 1.15rem;
}

.product-hero__eyebrow,
.product-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #00796b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button--secondary {
  background: var(--dark);
  color: var(--white);
}

.product-hero__panel,
.product-card {
  border: 1px solid #cddbd8;
  background: var(--white);
  box-shadow: 0 20px 48px rgba(16, 24, 32, 0.08);
}

.product-hero__panel {
  padding: 2rem;
}

.product-hero__panel h2 {
  margin-bottom: 1rem;
  color: #101820;
  font-family: "Poppins", sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.5rem;
  align-items: start;
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  padding: 1.4rem;
}

.product-card h3 {
  margin-bottom: 0.75rem;
  color: #101820;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.product-audience {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.audience-list span {
  border: 1px solid #cddbd8;
  background: #f7fbfa;
  padding: 0.65rem 0.9rem;
  color: #101820;
  font-size: 0.95rem;
  font-weight: 600;
}

.accordion__item[open] summary::after {
  content: "−";
}

.accordion__body {
  padding: 1.5rem 1.25rem 1.75rem;
}

.accordion__bridge {
  margin-top: 1rem;
}

.contact-form {
  margin-top: 1rem;
}

.contact-note {
  max-width: 38rem;
  margin: 0 auto;
}

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

.field {
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--heading);
}

.field label span {
  color: var(--accent);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fcfcfc;
  color: var(--copy);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #cccccc;
  background: var(--white);
}

.field--hidden {
  display: none;
}

.contact-form__submit {
  margin-top: 1.25rem;
}

.login-page {
  padding: 4rem 0 4.5rem;
  background:
    linear-gradient(90deg, rgba(250, 250, 250, 0.94), rgba(255, 255, 255, 0.9)),
    url("../images/hero-bg.jpg") center / cover no-repeat;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.login-panel,
.login-benefits {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.08);
}

.login-panel {
  padding: 2rem;
}

.login-benefits {
  padding: 2.25rem;
}

.login-panel__eyebrow {
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.login-panel h1 {
  color: #222222;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
}

.login-panel__lead {
  margin-top: 0.75rem;
  margin-bottom: 1.65rem;
  color: #4f5a5d;
  font-size: 1rem;
}

.login-alert {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  font-size: 0.94rem;
}

.login-alert--success {
  border-color: rgba(101, 190, 210, 0.45);
  background: rgba(101, 190, 210, 0.14);
  color: #245b66;
}

.login-alert--error {
  border-color: rgba(198, 22, 53, 0.28);
  background: rgba(198, 22, 53, 0.09);
  color: #7b182b;
}

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

.login-google {
  width: 100%;
  min-height: 50px;
  border-color: #cfd8d8;
  background: #ffffff;
  color: #222222;
  font-weight: 700;
}

.login-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin: 1.1rem 0;
  color: #6f7a7d;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.login-field span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--heading);
  font-size: 0.84rem;
  font-weight: 700;
}

.login-field input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.9rem;
  border: 1px solid #cfd8d8;
  background: #ffffff;
  color: #222222;
  font: inherit;
}

.captcha-prompt {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
}

.captcha-prompt strong {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 1rem;
  border: 1px solid rgba(198, 22, 53, 0.2);
  background: rgba(198, 22, 53, 0.06);
  color: #222222;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.captcha-prompt span {
  color: var(--heading);
  font-weight: 700;
}

.login-field input:focus {
  outline: none;
  border-color: var(--button);
  box-shadow: 0 0 0 3px rgba(101, 190, 210, 0.18);
}

.login-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 0.3rem;
  font-weight: 700;
}

.login-secondary-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.login-secondary-actions a {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.login-benefits h2 {
  margin-bottom: 0.8rem;
  color: #222222;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700;
}

.login-benefits p {
  max-width: 650px;
  color: #4f5a5d;
}

.login-benefits .feature-list {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(247, 247, 249, 0.96), rgba(255, 255, 255, 0.92)),
    url("../images/hero-bg.jpg") center / cover no-repeat;
}

.policy-hero__inner {
  max-width: 860px;
  padding: 3.5rem 0 3.75rem;
}

.policy-hero__eyebrow {
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: 780px;
  color: #343434;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.65rem);
  font-weight: 700;
  line-height: 1.12;
}

.policy-hero__summary {
  max-width: 700px;
  margin-top: 1.15rem;
  color: #4d4d4d;
  font-size: 1.12rem;
}

.policy-hero__effective {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.15rem;
  margin-bottom: 0;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(198, 22, 53, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--heading);
  font-size: 0.96rem;
}

.policy-content-section {
  padding-top: 3.5rem;
}

.policy-document {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.policy-document__summary {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--panel-soft);
}

.policy-document__summary h2 {
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.policy-document__summary ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.policy-document__summary li {
  position: relative;
  margin-bottom: 0.85rem;
  padding-left: 1.1rem;
  font-size: 0.96rem;
  line-height: 1.55;
}

.policy-document__summary li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  content: "";
}

.policy-document__summary .button {
  min-width: 0;
  width: 100%;
}

.policy-document__main {
  min-width: 0;
}

.policy-document__intro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: #444444;
  font-size: 1.05rem;
}

.policy-document__section {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 1.5rem;
  padding: 1.9rem 0;
  border-bottom: 1px solid var(--line);
}

.policy-document__section h2 {
  color: #303030;
  font-size: 1.35rem;
  line-height: 1.25;
}

.policy-document__section p,
.policy-document__section ul {
  grid-column: 2;
}

.policy-document__section p:last-child,
.policy-document__section ul:last-child {
  margin-bottom: 0;
}

.policy-document__section .feature-list {
  margin-top: 0.65rem;
}

.policy-document__section .feature-list li {
  margin-bottom: 0.7rem;
}

.site-footer {
  margin-top: 1rem;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.site-footer__main {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.88);
}

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

.footer-grid h3 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 1.4rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.contact-icon {
  flex: 0 0 20px;
  width: 20px;
  color: var(--white);
}

.contact-icon svg,
.footer-socials svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--dark);
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
  background: var(--accent);
  color: var(--white);
}

.site-footer__meta {
  background: var(--muted);
  color: var(--heading);
}

.site-footer__meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.site-footer__meta-inner p {
  margin: 0;
}

.site-footer__meta-inner a:hover,
.site-footer__meta-inner a:focus {
  color: var(--accent);
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 42px;
  border: 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.scroll-top:hover,
.scroll-top:focus {
  background: rgba(0, 0, 0, 0.3);
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 960px) {
  .content-section {
    padding: 4rem 0;
  }

  .split-section,
  .split-section--intro,
  .feature-grid,
  .footer-grid,
  .login-layout,
  .product-hero__inner,
  .product-layout,
  .product-audience,
  .policy-document,
  .policy-document__section {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    gap: 2rem;
  }

  .split-section--reverse {
    direction: ltr;
  }

  .site-hero__body {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding: 2.75rem 0 0.75rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .site-footer__meta-inner {
    flex-direction: column;
    text-align: center;
  }

  .login-layout {
    gap: 2rem;
  }

  .policy-hero__inner {
    padding: 3.5rem 0;
  }

  .policy-hero h1 {
    max-width: 760px;
  }

  .policy-document {
    gap: 2rem;
  }

  .policy-document__summary {
    position: static;
  }

  .policy-document__section {
    gap: 0.75rem;
  }

  .policy-document__section p,
  .policy-document__section ul {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 17px;
    line-height: 1.7;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  .site-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .site-nav {
    display: none;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .site-nav a {
    padding: 0.8rem 0;
  }

  .site-header--hero .site-nav,
  .site-header--plain .site-nav {
    margin-top: 0.25rem;
    padding: 0.9rem 1rem 0.35rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  }

  .hero-copy,
  .page-lead {
    text-align: center;
  }

  .hero-copy {
    padding-top: 2.4rem;
  }

  .hero-copy__title {
    max-width: none;
    font-size: 2rem;
  }

  .hero-copy__summary {
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading__line {
    margin-left: auto;
    margin-right: auto;
  }

  .section-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .brand__mark {
    width: 106px;
  }

  .button {
    width: auto;
  }

  .button--hero {
    align-self: center;
  }

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

  .accordion__item summary {
    padding: 1rem 3.25rem 1rem 1rem;
    font-size: 1.35rem;
  }

  .accordion__body {
    padding: 1.15rem 1rem 1.35rem;
  }

  .contact-form__submit,
  .centered-action .button {
    width: 100%;
  }

  .login-page {
    padding: 2.75rem 0 3rem;
  }

  .login-panel,
  .login-benefits {
    padding: 1.5rem;
  }

  .map-frame iframe {
    height: 270px;
  }

  .policy-content-section {
    padding-top: 2.75rem;
  }

  .policy-hero__inner {
    padding: 2.8rem 0;
  }

  .policy-hero h1 {
    font-size: 2.35rem;
  }

  .policy-hero__summary {
    font-size: 1rem;
  }

  .footer-grid {
    gap: 2.5rem;
    padding: 2.5rem 0;
  }

  .footer-grid section,
  .site-footer__meta-inner {
    text-align: center;
  }

  .footer-contact li,
  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .content-section {
    padding: 3.25rem 0;
  }

  .hero-copy__title {
    font-size: 1.95rem;
  }

  .hero-copy__eyebrow {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 230px;
  }

  .brand__mark {
    width: 96px;
  }

  .feature-list li {
    gap: 0.7rem;
  }

  .flash-message {
    padding: 0.9rem 1rem;
  }

  .login-panel,
  .login-benefits {
    padding: 1.25rem;
  }

  .captcha-prompt {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .map-frame iframe {
    height: 230px;
  }

  .policy-hero h1 {
    font-size: 1.95rem;
  }

  .policy-hero__effective {
    display: block;
  }

  .policy-document__summary,
  .policy-document__section {
    padding-left: 0;
    padding-right: 0;
  }
}
