:root {
  --bg: #081444;
  --bg-soft: #0b1a52;
  --bg-deep: #050d2e;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f3f1ea;
  --text-soft: rgba(243, 241, 234, 0.8);
  --text-muted: rgba(243, 241, 234, 0.58);
  --muted: #cfcabf;
  --blue: #2f5fb3;
  --blue-dark: #23498d;
  --blue-light: #396ac2;
  --card: #d9d5ca;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --radius: 28px;
  --radius-sm: 20px;
  --container: 1240px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-strong: 0 18px 60px rgba(0, 0, 0, 0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.045), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.24), transparent 50%),
    linear-gradient(180deg, #081444 0%, #060f36 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--blue-light);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s var(--ease-out),
    opacity 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

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

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 860px;
}

.site-main {
  overflow: hidden;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 20, 68, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    backdrop-filter 0.3s var(--ease-out);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
}

.site-brand a {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 120px;
  width: auto;
  display: block;
  opacity: 0.96;
  transition:
    opacity 0.3s var(--ease-out),
    transform 0.35s var(--ease-out),
    filter 0.35s var(--ease-out);
}

.site-brand:hover .site-logo {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 24px rgba(19, 39, 122, 0.22));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.98rem;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  opacity: 0.7;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

/* =========================
   BUTTONS
========================= */

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #f4f0e6;
  font-weight: 600;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 30px rgba(8, 20, 68, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue) 100%);
  box-shadow:
    0 16px 40px rgba(8, 20, 68, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* =========================
   HERO
========================= */

.hero {
  padding: 72px 0 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: stretch;
}

.hero-card {
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
  will-change: transform;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 28%,
    transparent 72%,
    rgba(255, 255, 255, 0.04) 100%
  );
  opacity: 0.45;
  pointer-events: none;
}

.hero-card--primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #f4f0e6;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.hero-card--primary:hover {
  box-shadow: var(--shadow-strong);
}

.hero-card--light {
  background: var(--card);
  color: var(--blue);
  min-height: 161px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
}

.hero-card--outline {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  min-height: 161px;
  display: flex;
  align-items: flex-end;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stack {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 28px;
}

.hero-top,
.hero-content,
.hero-actions {
  position: relative;
  z-index: 2;
}

.hero-card--primary::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -14%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 38%,
    transparent 72%
  );
  pointer-events: none;
}

.hero-kicker {
  margin: 0 0 24px;
  font-size: 0.92rem;
  text-transform: lowercase;
  letter-spacing: 0.01em;
  color: rgba(244, 240, 230, 0.82);
}

.hero-title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-content {
  max-width: 760px;
}

.hero-text {
  margin: 24px 0 32px;
  max-width: 28rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(244, 240, 230, 0.88);
}

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

.hero-mini {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.hero-mini-index {
  font-size: 0.82rem;
  opacity: 0.48;
  line-height: 1;
  display: inline-block;
  transform: translateY(-4px);
}

.hero-card--light .hero-mini-index {
  color: rgba(8, 20, 68, 0.62);
}

.hero-card--outline .hero-mini-index {
  color: rgba(243, 241, 234, 0.48);
}

.mini-label {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-card--light:hover,
.hero-card--outline:hover {
  transform: translateY(-4px);
}

/* =========================
   SHARED SECTION
========================= */

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: lowercase;
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-text {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 38rem;
  line-height: 1.55;
}

/* =========================
   PILLARS
========================= */

.pillars-section {
  padding: 0 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-radius: var(--radius);
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
  will-change: transform;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 34%,
    transparent 70%,
    rgba(255, 255, 255, 0.03) 100%
  );
  pointer-events: none;
}

.pillar-card:hover {
  box-shadow: var(--shadow-strong);
}

.pillar-card--light {
  background: var(--card);
  color: var(--blue);
  box-shadow: var(--shadow-soft);
}

.pillar-card--blue {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #f4f0e6;
  box-shadow: var(--shadow-soft);
}

.pillar-card--outline {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.pillar-index {
  display: inline-block;
  font-size: 0.85rem;
  opacity: 0.62;
}

.pillar-title {
  margin: 12px 0;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.035em;
}

.pillar-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  opacity: 0.88;
}

/* =========================
   DIFFERENCE SECTION
========================= */

.difference-section {
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.difference-shell {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 40px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.018) 100%);
  overflow: hidden;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.difference-left {
  max-width: 760px;
}

.difference-title {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  max-width: 9ch;
}

.difference-intro {
  margin: 24px 0 0;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.difference-right {
  display: flex;
  align-items: stretch;
}

.difference-card {
  width: 100%;
  min-height: 100%;
  border-radius: 24px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.difference-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.difference-list li {
  position: relative;
  padding: 0 0 18px 28px;
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.difference-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #d9d5ca;
  font-weight: 700;
  font-size: 1.1rem;
}

.difference-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.difference-strip__item {
  border-radius: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-strip__index {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.difference-strip__item p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.4;
}

/* =========================
   FINAL CTA
========================= */

.final-cta-section {
  padding: 0 0 120px;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 48px;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #f4f0e6;
  box-shadow: var(--shadow-strong);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
  gap: 48px;
  align-items: start;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 40%,
    transparent 72%
  );
  pointer-events: none;
}

.final-cta-content,
.final-cta-form-wrap {
  position: relative;
  z-index: 2;
}

.final-cta-content {
  max-width: 640px;
}

.final-cta-title {
  margin: 0 0 18px;
  max-width: 9ch;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.final-cta-text {
  margin: 0;
  max-width: 34rem;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(244, 240, 230, 0.88);
}

.final-cta-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.final-cta-meta__item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-cta-meta__label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: rgba(244, 240, 230, 0.68);
}

.final-cta-meta__item a,
.final-cta-meta__item p {
  margin: 0;
  font-size: 1rem;
  color: #f4f0e6;
}

/* =========================
   FORM CARD
========================= */

.final-cta-form-wrap {
  border-radius: 24px;
  padding: 24px;
  background: rgba(7, 12, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-field label {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.82);
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 0.98rem;
  color: #fff;
  outline: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  resize: vertical;
}

.form-field textarea {
  min-height: 150px;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.26);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.form-consent {
  padding-top: 4px;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(244, 240, 230, 0.78);
  cursor: pointer;
}

.checkbox-field input {
  margin: 3px 0 0;
  width: 16px;
  height: 16px;
  accent-color: #ffffff;
}

.checkbox-field a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-actions {
  padding-top: 4px;
}

.contact-form .button-primary {
  margin-top: 0;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.form-message--success {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f4f0e6;
}

.form-message--error {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f4f0e6;
}

/* =========================
   DEFAULT PAGE
========================= */

.page-content-section {
  padding: 80px 0 120px;
}

.page-header {
  margin-bottom: 28px;
}

.page-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.page-content {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-top: 0;
  margin-bottom: 20px;
}

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.page-content h2 {
  margin-top: 44px;
  font-size: 2rem;
}

.page-content h3 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.page-content ul,
.page-content ol {
  padding-left: 22px;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 36px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 0.8rem;
  color: rgba(243, 241, 234, 0.62);
}

.footer-left p,
.footer-right p {
  margin: 4px 0;
}

.footer-right {
  text-align: right;
}

.footer-right a {
  text-decoration: underline;
  opacity: 0.82;
}

.footer-right a:hover {
  opacity: 1;
}

/* =========================
   MOBILE BOTTOM BAR
========================= */

.mobile-bottom-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(8, 20, 68, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-bottom-bar__item {
  min-height: 56px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(243, 241, 234, 0.72);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.mobile-bottom-bar__item:hover,
.mobile-bottom-bar__item:active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-bottom-bar__item--primary {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #f4f0e6;
  box-shadow: 0 10px 24px rgba(8, 20, 68, 0.28);
}

.mobile-bottom-bar__item--primary:hover,
.mobile-bottom-bar__item--primary:active {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-dark) 100%);
  color: #fff;
}

.mobile-bottom-bar__icon {
  font-size: 0.9rem;
  line-height: 1;
  opacity: 0.9;
}

.mobile-bottom-bar__label {
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

/* =========================
   REVEAL ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}

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

body.is-ready .hero-card--primary {
  animation: heroRise 1s var(--ease-out) both;
}

body.is-ready .hero-card--light:nth-child(1) {
  animation: softRise 1s 0.08s var(--ease-out) both;
}

body.is-ready .hero-card--light:nth-child(2) {
  animation: softRise 1s 0.16s var(--ease-out) both;
}

body.is-ready .hero-card--outline:nth-child(3) {
  animation: softRise 1s 0.24s var(--ease-out) both;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 960px) {
  .hero-grid,
  .difference-grid,
  .final-cta-card {
    grid-template-columns: 1fr;
  }

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

  .hero-stack {
    grid-template-rows: auto;
  }

  .pillars-grid,
  .difference-strip,
  .final-cta-meta {
    grid-template-columns: 1fr;
  }

  .difference-shell {
    padding: 28px;
    border-radius: 24px;
  }

  .site-nav {
    gap: 16px;
    font-size: 0.95rem;
  }

  .hero-mini {
    align-items: center;
  }

  .hero-card--primary::after {
    width: 240px;
    height: 240px;
    right: -10%;
    bottom: -10%;
  }

  .final-cta-title,
  .difference-title {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: grid;
  }

  body {
    padding-bottom: 92px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    display: none;
  }

  .site-logo {
    height: 48px;
  }

  .hero {
    padding: 40px 0 72px;
  }

  .hero-card,
  .pillar-card,
  .final-cta-card {
    border-radius: 22px;
  }

  .hero-card,
  .pillar-card {
    padding: 24px;
  }

  .difference-shell {
    padding: 22px;
  }

  .difference-card,
  .difference-strip__item,
  .final-cta-form-wrap {
    border-radius: 18px;
  }

  .final-cta-card {
    padding: 26px;
    gap: 26px;
  }

  .final-cta-form-wrap {
    padding: 18px;
  }

  .section-head {
    margin-bottom: 28px;
  }

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

  .hero-mini {
    flex-direction: row;
    align-items: flex-end;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}