:root {
  --navy: #1f2439;
  --navy-strong: #171c2b;
  --navy-soft: #2a3148;
  --gold: #d3a979;
  --gold-strong: #bf9160;
  --gold-soft: #ead7bf;
  --ivory: #f6f1e9;
  --ivory-soft: #fbf8f3;
  --white: #fffdf9;
  --text: #f7f0e7;
  --muted: rgba(247, 240, 231, 0.74);
  --muted-strong: rgba(247, 240, 231, 0.58);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(211, 169, 121, 0.22);
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --surface-warm: rgba(211, 169, 121, 0.12);
  --surface-dark: linear-gradient(160deg, #1f2439 0%, #252d44 55%, #171c2b 100%);
  --shadow-soft: rgba(23, 28, 43, 0.12);
  --shadow-strong: rgba(23, 28, 43, 0.24);
  --container: min(1180px, calc(100vw - 2rem));
  --container-narrow: min(860px, calc(100vw - 2rem));
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --header-height: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background: var(--navy);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.ambient,
.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.7;
}

.ambient-one {
  width: 34rem;
  height: 34rem;
  top: -6rem;
  left: -10rem;
  background: rgba(211, 169, 121, 0.08);
  animation: pulse-glow 12s ease-in-out infinite;
}

.ambient-two {
  width: 30rem;
  height: 30rem;
  top: 24rem;
  right: -10rem;
  background: rgba(211, 169, 121, 0.04);
  animation: pulse-glow 15s ease-in-out infinite;
  animation-delay: 2s;
}

.ambient-three {
  width: 42rem;
  height: 42rem;
  bottom: -18rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(211, 169, 121, 0.06);
  animation: pulse-glow 14s ease-in-out infinite;
  animation-delay: 1.5s;
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 88%);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.narrow {
  width: var(--container-narrow);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2.6rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(211, 169, 121, 0.44);
  background: rgba(211, 169, 121, 0.12);
  color: var(--gold-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-heading h2,
.page-hero h1,
.hero h1 span:last-child,
.cta-panel h2,
.audit-modal__header h2 {
  margin: 0 0 1rem;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading p,
.page-hero p,
.hero-intro,
.feature-card p,
.audience-card p,
.offer-card li,
.offer-note,
.mini-card p,
.cta-panel p,
.footer-tagline,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.glass-card,
.glass-card-strong {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.glass-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card-strong {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 24px 54px -34px var(--shadow-soft);
}

.card-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transition: transform 0.9s ease;
}

.card-shine:hover::before {
  transform: translateX(120%);
}

.hover-lift {
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px -36px rgba(31, 36, 57, 0.24);
  border-color: rgba(211, 169, 121, 0.5);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.92rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #deba92 0%, var(--gold) 54%, #bf9160 100%);
  color: var(--navy);
  box-shadow: 0 24px 40px -28px rgba(191, 145, 96, 0.55);
}

.button-primary:hover {
  box-shadow: 0 30px 48px -30px rgba(191, 145, 96, 0.7);
}

.button-secondary {
  background: rgba(211, 169, 121, 0.14);
  color: var(--white);
  border-color: rgba(211, 169, 121, 0.3);
  box-shadow: 0 18px 34px -26px rgba(23, 28, 43, 0.48);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: rgba(211, 169, 121, 0.42);
  box-shadow: 0 20px 38px -28px rgba(23, 28, 43, 0.42);
}

.audit-modal[hidden] {
  display: none;
}

.audit-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.audit-modal.is-open {
  animation: fade-in 0.25s ease;
}

.audit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 28, 43, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form {
  background: rgba(23, 28, 43, 0.66);
}

.audit-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(92vh, 920px);
  overflow: auto;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  background: linear-gradient(180deg, rgba(36, 43, 67, 0.98), rgba(23, 28, 43, 0.98));
  border: 1px solid rgba(211, 169, 121, 0.18);
  box-shadow: 0 36px 100px -54px rgba(23, 28, 43, 0.6);
}

.audit-modal__header {
  padding-right: 3rem;
}

.audit-modal__header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.audit-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.audit-form {
  margin-top: 1.7rem;
}

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

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

.field span {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 240, 231, 0.48);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(211, 169, 121, 0.8);
  box-shadow: 0 0 0 4px rgba(211, 169, 121, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

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

.consent-block {
  display: grid;
  grid-template-columns: 1.1rem minmax(0, 1fr);
  gap: 0.9rem;
  margin-top: 1.25rem;
  color: var(--white);
  line-height: 1.7;
}

.consent-block input {
  margin-top: 0.32rem;
  accent-color: var(--gold-strong);
}

.consent-block a,
.form-legal-note a,
.policy-card a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
  font-weight: 700;
}

.consent-block a:hover,
.form-legal-note a:hover,
.policy-card a:hover {
  color: var(--navy);
}

.form-legal-note {
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(211, 169, 121, 0.12);
  border: 1px solid rgba(211, 169, 121, 0.24);
}

.form-legal-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.form-legal-note p + p {
  margin-top: 0.7rem;
}

.audit-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(31, 36, 57, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.3rem;
  font-family: "Bodoni Moda", serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  background: var(--navy);
  box-shadow: 0 22px 40px -28px rgba(31, 36, 57, 0.56);
}

.brand-copy {
  display: grid;
  gap: 0.14rem;
}

.brand-copy strong {
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.brand-copy small {
  color: var(--gold-strong);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.primary-nav a:not(.button) {
  color: var(--muted);
  font-weight: 700;
}

.primary-nav a:not(.button):hover {
  color: var(--navy);
}

.nav-cta {
  margin-left: 0.6rem;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  flex-direction: column;
  justify-content: center;
  gap: 0.32rem;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding-top: 4rem;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  max-width: 100%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(211, 169, 121, 0.14);
  font-weight: 700;
  font-size: 0.92rem;
}

.eyebrow-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(211, 169, 121, 0.18);
}

.hero h1 {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.wordmark {
  font-family: "Bodoni Moda", serif;
  font-size: clamp(3.2rem, 7.4vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 0.94;
}

.hero h1 span:last-child {
  max-width: 12ch;
}

.hero-intro {
  max-width: 39rem;
  margin: 1.6rem 0 0;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.hero-points li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  color: var(--white);
}

.hero-points li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--navy) 0.18rem, transparent 0.2rem),
    linear-gradient(135deg, #ebc89e 0%, var(--gold) 100%);
  box-shadow: 0 16px 26px -18px rgba(191, 145, 96, 0.55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-panel {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--surface-dark);
  color: var(--white);
  border: 1px solid rgba(211, 169, 121, 0.18);
  box-shadow: 0 34px 78px -46px rgba(31, 36, 57, 0.72);
  animation: float 7s ease-in-out infinite;
}

.panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.panel-head p {
  margin: 0 0 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.panel-head h2 {
  margin: 0;
  font-family: "Bodoni Moda", serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.panel-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  font-family: "Bodoni Moda", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, #ebc89e 0%, var(--gold) 100%);
  box-shadow: 0 20px 42px -24px rgba(211, 169, 121, 0.55);
}

.status-list {
  display: grid;
  gap: 1rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-row strong,
.offer-card h3,
.feature-card h3,
.audience-card h3,
.mini-card h3,
.policy-card h2 {
  display: block;
  margin: 0 0 0.25rem;
  font-family: "Bodoni Moda", serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.status-row strong {
  color: var(--white);
}

.status-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.status-row em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.6rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(211, 169, 121, 0.14);
  color: #f3d3ad;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-note {
  position: absolute;
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.15rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 42px -32px rgba(31, 36, 57, 0.24);
  animation: float 6s ease-in-out infinite;
}

.floating-note span,
.mini-card span,
.audience-mark,
.feature-index,
.offer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(211, 169, 121, 0.16);
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.floating-note strong {
  font-family: "Bodoni Moda", serif;
  font-size: 1rem;
  color: var(--white);
}

.note-right {
  top: 2rem;
  right: -1rem;
  animation-delay: 1s;
}

.note-left {
  bottom: -4.55rem;
  left: -2.2rem;
  animation-delay: 2s;
}

.service-grid,
.audience-grid,
.offer-grid,
.why-cards,
.policy-grid {
  display: grid;
  gap: 1.4rem;
}

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

.feature-card,
.audience-card,
.offer-card,
.mini-card,
.policy-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px -40px rgba(31, 36, 57, 0.18);
}

.feature-card,
.audience-card,
.offer-card,
.mini-card {
  min-height: 100%;
}

.feature-index,
.audience-mark,
.mini-card span {
  margin-bottom: 1.1rem;
}

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

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-card ul,
.policy-list {
  margin: 0;
  padding-left: 1.1rem;
}

.offer-card li,
.policy-list li {
  margin-bottom: 0.8rem;
}

.offer-card li::marker,
.policy-list li::marker {
  color: var(--gold-strong);
}

.offer-top {
  display: grid;
  gap: 0.85rem;
}

.offer-kicker {
  min-height: 2.2rem;
}

.offer-card a {
  margin-top: auto;
}

.offer-card-featured {
  background:
    linear-gradient(180deg, rgba(211, 169, 121, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(211, 169, 121, 0.36);
  box-shadow: 0 34px 70px -44px rgba(211, 169, 121, 0.52);
}

.offer-card-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(211, 169, 121, 0.92), rgba(31, 36, 57, 0.18));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.offer-note {
  margin: 1.5rem 0 0;
  text-align: center;
}

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

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

.cta-section {
  padding-bottom: 6rem;
}

.cta-panel {
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--surface-dark);
  color: var(--white);
  border: 1px solid rgba(211, 169, 121, 0.18);
  box-shadow: 0 34px 78px -48px rgba(31, 36, 57, 0.72);
}

.cta-panel .section-label {
  color: #f0d6b9;
  border-color: rgba(211, 169, 121, 0.4);
  background: rgba(211, 169, 121, 0.12);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel > p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

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

.compliance-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 0 2rem;
  background: var(--navy);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.7fr));
  gap: 2rem;
  align-items: start;
  padding-bottom: 1.6rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-tagline {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .brand-copy strong,
.site-footer .footer-title {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: #e0c29f;
}

.site-footer .brand-mark {
  background: rgba(255, 255, 255, 0.08);
  color: #e6c59f;
  border: 1px solid rgba(211, 169, 121, 0.22);
}

.footer-block {
  display: grid;
  gap: 0.7rem;
}

.footer-title {
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.footer-block a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-block a:hover,
.footer-bottom a:hover {
  color: #f3dfc8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.96rem;
}

.page-hero {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.page-hero p,
.inner-main .policy-card p,
.inner-main .policy-card li {
  font-size: 1.02rem;
}

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

.policy-card h2 {
  margin-bottom: 0.85rem;
}

.policy-card strong {
  color: var(--white);
}

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

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-visual {
    min-height: auto;
    padding-bottom: 6rem;
  }

  .note-right {
    right: 0;
  }

  .note-left {
    left: 0;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 1.4rem;
    background: rgba(31, 36, 57, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 80px -42px rgba(23, 28, 43, 0.34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      visibility 0.25s ease;
  }

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

  .static-nav {
    position: static;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-cta {
    margin-left: 0;
  }

  .audience-grid,
  .policy-grid,
  .why-cards {
    grid-template-columns: 1fr;
  }

  .audit-form__grid {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 4.5rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-panel {
    padding: 1.4rem;
  }

  .status-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .status-row em {
    min-width: 0;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  .hero-actions,
  .cta-actions,
  .compliance-meta,
  .audit-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

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

  .audit-modal__dialog {
    padding: 1rem;
  }

  .audit-modal__header {
    padding-right: 2.5rem;
  }
}
