*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #1a1a2e;
  overflow-x: hidden;
}
:root {
  --navy: #0c2b5d;
  --lb: #7bb6d1;
  --lb30: #dce9f1;
  --gold: #aa9b78;
  --gold40: #dcd7c8;
  --gold10: #f6f4f0;
  --brown: #655d53;
  --white: #fff;
  --mb-dark: #0d1b2a;
  --mb-mid: #1b2e42;
  --mb-acc: #1e90ff;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(12, 43, 93, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(170, 155, 120, 0.25);
}

.img_stb {
  width: 50px;
  height: 35px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-wm {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-wm-n {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}
.nav-wm-n b {
  font-weight: 700;
}
.nav-wm-s {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 2px;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: #c3b79e !important;
}
section {
  position: relative;
}
.si {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.stag::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.stit {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 16px;
}
.stit em {
  font-style: italic;
  color: var(--lb);
}
.slead {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--brown);
  max-width: 560px;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 99px,
    rgba(170, 155, 120, 0.05) 100px
  );
}
.hero-circle {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(123, 182, 209, 0.14);
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: rot 60s linear infinite;
}
.hero-circle::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(170, 155, 120, 0.1);
  top: 90px;
  left: 90px;
}
@keyframes rot {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.hero-l {
  padding: 80px 4vw 80px 8vw;
  position: relative;
  z-index: 2;
  animation: fup 0.9s ease both;
}
@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.htag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}
.htag::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.22;
  color: #fff;
  margin-bottom: 10px;
}
.hero h1 em {
  font-style: italic;
  color: var(--lb);
}
.hero h1 strong {
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px;
  margin: 20px 0 36px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-p {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition:
    background 0.25s,
    transform 0.2s;
  border: none;
}
.btn-p:hover {
  background: #c3b79e;
  transform: translateY(-2px);
}
.btn-s {
  display: inline-block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.btn-s:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.hero-r {
  padding: 80px 8vw 80px 4vw;
  position: relative;
  z-index: 2;
  animation: fup 1.1s 0.15s ease both;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 28px;
}
.sc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(170, 155, 120, 0.17);
  padding: 24px 20px;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.sc:hover {
  background: rgba(170, 155, 120, 0.07);
  border-color: rgba(170, 155, 120, 0.38);
}
.sn {
  font-family: "Noto Serif", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.sl {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 600;
}
.pbadge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(170, 155, 120, 0.19);
  border-radius: 4px;
  padding: 14px 18px;
}
.pbadge-ic {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.pbadge-t {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}
.pbadge-t b {
  display: block;
  color: #fff;
  font-size: 0.78rem;
}

/* INTRO */
.intro {
  background: var(--gold10);
  border-top: 3px solid var(--gold);
  padding: 80px 0;
}
.ig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.iquote {
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin-top: 28px;
}
.iquote p {
  font-family: "Noto Serif", serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--navy);
  font-weight: 300;
}
.iquote cite {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 700;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--gold40);
  border-radius: 3px;
  cursor: default;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.pic {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pic svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.pb h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.pb p {
  font-size: 0.78rem;
  color: var(--brown);
  line-height: 1.6;
}

/* USPs */
.usps {
  background: var(--navy);
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}
.usps::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.uh {
  margin-bottom: 56px;
}
.ugrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.uc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(170, 155, 120, 0.14);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.uc::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.uc:hover {
  background: rgba(170, 155, 120, 0.07);
}
.uc:hover::before {
  transform: scaleX(1);
}
.un {
  font-family: "Noto Serif", serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: rgba(170, 155, 120, 0.18);
  line-height: 1;
  margin-bottom: 18px;
  transition: color 0.3s;
}
.uc:hover .un {
  color: rgba(170, 155, 120, 0.42);
}
.uc h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.uc p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
}
.uh2 {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* LEISTUNGEN */
.leist {
  background: var(--gold10);
  padding: 90px 0;
  border-top: 1px solid var(--gold40);
}
.lh {
  margin-bottom: 52px;
}
.lgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.lc {
  background: #fff;
  border: 1px solid var(--gold40);
  border-radius: 3px;
  padding: 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  cursor: default;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.lc:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 28px rgba(12, 43, 93, 0.09);
  transform: translateY(-2px);
}
.ln {
  font-family: "Noto Serif", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 30px;
}
.lb2 h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.lb2 p {
  font-size: 0.78rem;
  color: var(--brown);
  line-height: 1.65;
}

/* MEDIFOX */
.mfox {
  background: #fff;
  padding: 90px 0;
  border-top: 1px solid var(--gold40);
}
.mg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.mc {
  background: var(--navy);
  border-radius: 6px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.mc::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(170, 155, 120, 0.18);
}
.mcl {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.mcl span {
  color: var(--lb);
}
.mcs {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.mflow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.fi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  border-left: 2px solid var(--gold);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
}
.fi-arr {
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.55;
  margin: -3px 0;
}
.blist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.blist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.83rem;
  color: var(--brown);
  line-height: 1.5;
}
.blist li::before {
  content: "→";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.mb-bh h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

/* miBOXX */
.mb-wrap {
  background: var(--mb-dark);
  position: relative;
  overflow: hidden;
}
.mb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 144, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 144, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.mb-wedge-top {
  display: block;
  width: 100%;
  background: var(--gold10);
  line-height: 0;
}
.mb-wedge-top svg {
  display: block;
  width: 100%;
}
.mb-wedge-bot {
  display: block;
  width: 100%;
  background: var(--navy);
  line-height: 0;
}
.mb-wedge-bot svg {
  display: block;
  width: 100%;
}
.mb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 5vw 90px;
}
.mb-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(30, 144, 255, 0.18);
  margin-bottom: 56px;
}
.mb-eye {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mb-acc);
  margin-bottom: 6px;
}
.mb-eye::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--mb-acc);
}
.mb-logo {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.mb-logo .mi {
  color: var(--mb-acc);
}
.mb-logo .bx {
  background: var(--mb-acc);
  color: #fff;
  padding: 0 7px 2px;
  border-radius: 3px;
  margin-left: 2px;
}

.img_miboxx {
  margin-top: 120px;
  width: 64px;
  height: 64px;
}

.mb-tag {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 8px;
}
.mb-since {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.36);
  margin-top: 14px;
  font-weight: 600;
  letter-spacing: 0.07em;
}
.mb-since::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mb-acc);
  flex-shrink: 0;
}
.mb-hr-r p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 22px;
}
.mb-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.22);
  border-radius: 4px;
  padding: 13px 18px;
}
.mb-badge-ic {
  width: 34px;
  height: 34px;
  background: var(--mb-acc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}
.mb-badge-t {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.5;
}
.mb-badge-t b {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  margin-bottom: 2px;
}
.mb-uth {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff;
  margin-bottom: 7px;
}
.mb-uth em {
  font-style: italic;
  color: var(--mb-acc);
}
.mb-ulead {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.mb-ugrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(30, 144, 255, 0.18);
  border: 1px solid rgba(30, 144, 255, 0.18);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 56px;
}
.muc {
  background: var(--mb-dark);
  padding: 32px 26px;
  cursor: default;
  transition: background 0.3s;
}
.muc:hover {
  background: var(--mb-mid);
}
.muc-ic {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: rgba(30, 144, 255, 0.14);
  border: 1px solid rgba(30, 144, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.muc:hover .muc-ic {
  background: var(--mb-acc);
  border-color: var(--mb-acc);
}
.muc-ic svg {
  width: 20px;
  height: 20px;
  fill: var(--mb-acc);
  transition: fill 0.3s;
}
.muc:hover .muc-ic svg {
  fill: #fff;
}
.muc h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 9px;
}
.muc p {
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}
.muc-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mb-acc);
}
.mb-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  background: var(--mb-mid);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 6px;
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.mb-cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--mb-acc);
  border-radius: 0;
}
.mb-cta h3 {
  font-family: "Noto Serif", serif;
  font-weight: 300;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 5px;
}
.mb-cta h3 em {
  font-style: italic;
  color: var(--mb-acc);
}
.mb-cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 480px;
}
.btn-mb {
  display: inline-block;
  background: var(--mb-acc);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  transition:
    background 0.25s,
    transform 0.2s,
    box-shadow 0.25s;
}
.btn-mb:hover {
  background: #3da0ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 144, 255, 0.32);
}

/* CTA */
.cta-s {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-s::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(170, 155, 120, 0.09);
  transform: translate(-50%, -50%);
}
.cta-s::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(123, 182, 209, 0.09);
  transform: translate(-50%, -50%);
}
.cta-in {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 5vw;
}
.cta-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(170, 155, 120, 0.32);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.cta-form input:focus {
  border-color: var(--gold);
}
.cta-form button {
  background: var(--gold);
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.25s,
    transform 0.2s;
}
.cta-form button:hover {
  background: #c3b79e;
  transform: translateY(-2px);
}
.cta-fine {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.05em;
}

/* FOOTER */
footer {
  background: #070f1f;
  padding: 44px 5vw 28px;
  border-top: 1px solid rgba(170, 155, 120, 0.18);
}
.fi-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.fb p {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.fc h4 {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fc a,
.fc p {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  margin-bottom: 7px;
  line-height: 1.6;
  transition: color 0.2s;
}
.fc a:hover {
  color: rgba(255, 255, 255, 0.78);
}
.fbot {
  max-width: 1180px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.22);
}

.fbot a {
  color: rgba(255, 255, 255, 0.22);
  text-decoration: none;
  transition: color 0.2s;
}

.fbot a:hover {
  color: rgba(255, 255, 255, 0.78);
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-r {
    padding-top: 0;
    padding-bottom: 56px;
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .ig,
  .mg {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ugrid,
  .lgrid {
    grid-template-columns: 1fr 1fr;
  }
  .mb-hdr {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 56px 0 40px;
  }
  .mb-ugrid {
    grid-template-columns: 1fr 1fr;
  }
  .mb-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px;
  }
  .fi-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .ugrid,
  .lgrid,
  .mb-ugrid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .fbot {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
