/* =========================================================
   MIDWEST HORIZONS — LUXE EFFECTS PACK
   Metallic animated background
   Glowing gold hover buttons
   Moving footer gold divider
   Card hover lift
   Smoother section spacing
   Luxury nav animation
   ========================================================= */

/* ------------------------------
   1) BRAND VARIABLES
------------------------------ */
:root {
  --mwh-bg-1: #040608;
  --mwh-bg-2: #0a1018;
  --mwh-bg-3: #111827;
  --mwh-gold-1: #c79a2b;
  --mwh-gold-2: #e1c15a;
  --mwh-gold-3: #f3da8a;
  --mwh-text: #f5f2ea;
  --mwh-text-soft: rgba(245, 242, 234, 0.82);
  --mwh-line: rgba(225, 193, 90, 0.25);
  --mwh-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --mwh-shadow-gold: 0 10px 30px rgba(225, 193, 90, 0.22);
  --mwh-radius: 22px;
  --mwh-speed: 18s;
}

/* ------------------------------
   2) METALLIC ANIMATED BACKGROUND
------------------------------ */
html,
body {
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 193, 90, 0.10), transparent 0 22%),
    radial-gradient(circle at 85% 10%, rgba(225, 193, 90, 0.08), transparent 0 18%),
    linear-gradient(120deg, var(--mwh-bg-1) 0%, var(--mwh-bg-2) 35%, #1a2029 50%, var(--mwh-bg-2) 65%, var(--mwh-bg-1) 100%);
  background-size: 100% 100%, 100% 100%, 220% 220%;
  animation: mwhMetalFlow var(--mwh-speed) ease-in-out infinite;
  color: var(--mwh-text);
}

@keyframes mwhMetalFlow {
  0%   { background-position: 0% 0%, 100% 0%, 0% 50%; }
  50%  { background-position: 0% 0%, 100% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 100% 0%, 0% 50%; }
}

/* soft sheen overlay without blocking clicks */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg,
      transparent 0%,
      rgba(255,255,255,0.015) 22%,
      rgba(255,255,255,0.04) 30%,
      rgba(255,255,255,0.015) 38%,
      transparent 52%);
  background-size: 220% 100%;
  animation: mwhSheen 14s linear infinite;
}

@keyframes mwhSheen {
  0% { background-position: 120% 0; }
  100% { background-position: -20% 0; }
}

/* keep content above overlay */
.wp-site-blocks,
.site,
.site-content,
header,
footer {
  position: relative;
  z-index: 1;
}

/* ------------------------------
   3) SMOOTHER SECTION SPACING
------------------------------ */
.wp-block-group.alignfull,
.wp-block-cover.alignfull,
.wp-block-columns.alignwide,
.wp-block-group.alignwide {
  margin-top: 0;
  margin-bottom: 0;
}

.page .entry-content > .wp-block-group.alignfull,
.page .wp-block-post-content > .wp-block-group.alignfull,
.home .entry-content > .wp-block-group.alignfull,
.home .wp-block-post-content > .wp-block-group.alignfull {
  padding-top: clamp(36px, 5vw, 72px) !important;
  padding-bottom: clamp(36px, 5vw, 72px) !important;
}

/* ------------------------------
   4) GLOWING GOLD BUTTONS
------------------------------ */
.wp-block-button__link,
.wp-element-button,
button,
input[type="submit"] {
  position: relative;
  overflow: hidden;
  border: none !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--mwh-gold-3), var(--mwh-gold-2) 45%, var(--mwh-gold-1)) !important;
  color: #17130b !important;
  font-weight: 800 !important;
  box-shadow: var(--mwh-shadow-gold);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.wp-block-button__link::before,
.wp-element-button::before,
button::before,
input[type="submit"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-22deg);
  transition: left 0.7s ease;
  pointer-events: none;
}

.wp-block-button__link:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 14px 34px rgba(225, 193, 90, 0.30),
    0 0 18px rgba(225, 193, 90, 0.22);
  filter: brightness(1.03);
}

.wp-block-button__link:hover::before,
.wp-element-button:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
  left: 150%;
}

/* ------------------------------
   5) CARD HOVER LIFT
------------------------------ */
.page .entry-content .wp-block-columns .wp-block-column > .wp-block-group,
.page .wp-block-post-content .wp-block-columns .wp-block-column > .wp-block-group,
.page .entry-content .wp-block-group.has-background,
.page .wp-block-post-content .wp-block-group.has-background,
.home .wp-block-columns .wp-block-column > .wp-block-group,
.home .wp-block-group.has-background {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--mwh-radius);
  box-shadow: var(--mwh-shadow);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.page .entry-content .wp-block-columns .wp-block-column > .wp-block-group:hover,
.page .wp-block-post-content .wp-block-columns .wp-block-column > .wp-block-group:hover,
.page .entry-content .wp-block-group.has-background:hover,
.page .wp-block-post-content .wp-block-group.has-background:hover,
.home .wp-block-columns .wp-block-column > .wp-block-group:hover,
.home .wp-block-group.has-background:hover {
  transform: translateY(-6px);
  box-shadow:
    0 22px 44px rgba(0,0,0,0.40),
    0 0 0 1px rgba(225,193,90,0.12);
  border-color: rgba(225,193,90,0.22);
}

/* ------------------------------
   6) MOVING FOOTER GOLD DIVIDER
------------------------------ */
footer,
.site-footer {
  position: relative;
  overflow: hidden;
  border-top: none !important;
}

footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 160%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(225,193,90,0.15) 15%,
    rgba(243,218,138,0.95) 50%,
    rgba(225,193,90,0.15) 85%,
    transparent 100%
  );
  box-shadow: 0 0 16px rgba(225,193,90,0.35);
  animation: mwhFooterLine 7s linear infinite;
}

@keyframes mwhFooterLine {
  0%   { transform: translateX(-18%); opacity: .7; }
  50%  { transform: translateX(8%); opacity: 1; }
  100% { transform: translateX(28%); opacity: .7; }
}

/* ------------------------------
   7) LUXURY NAV ANIMATION
   desktop only, gentle and safe
------------------------------ */
@media (min-width: 901px) {
  header .wp-block-navigation-item > a,
  header .wp-block-navigation-item__content,
  .site-header .wp-block-navigation-item > a,
  .site-header .wp-block-navigation-item__content {
    position: relative;
    transition: transform 0.18s ease, opacity 0.18s ease, filter 0.18s ease;
  }

  header .wp-block-navigation-item > a::after,
  header .wp-block-navigation-item__content::after,
  .site-header .wp-block-navigation-item > a::after,
  .site-header .wp-block-navigation-item__content::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 8px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--mwh-gold-3), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
    opacity: 0.95;
  }

  header .wp-block-navigation-item > a:hover,
  header .wp-block-navigation-item__content:hover,
  .site-header .wp-block-navigation-item > a:hover,
  .site-header .wp-block-navigation-item__content:hover {
    transform: translateY(-1px);
    filter: brightness(1.04);
  }

  header .wp-block-navigation-item > a:hover::after,
  header .wp-block-navigation-item__content:hover::after,
  .site-header .wp-block-navigation-item > a:hover::after,
  .site-header .wp-block-navigation-item__content:hover::after {
    transform: scaleX(1);
  }
}

/* ------------------------------
   8) NICE IMAGE POLISH
------------------------------ */
.page .entry-content .wp-block-image img,
.page .wp-block-post-content .wp-block-image img,
.home .wp-block-image img {
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.28);
}

/* ------------------------------
   9) MOBILE TUNE
------------------------------ */
@media (max-width: 900px) {
  body::before {
    animation-duration: 18s;
  }

  .page .entry-content > .wp-block-group.alignfull,
  .page .wp-block-post-content > .wp-block-group.alignfull,
  .home .entry-content > .wp-block-group.alignfull,
  .home .wp-block-post-content > .wp-block-group.alignfull {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .wp-block-button__link,
  .wp-element-button,
  button,
  input[type="submit"] {
    box-shadow: 0 10px 24px rgba(225,193,90,0.22);
  }
}
/* =========================================================
   MIDWEST HORIZONS — METALLIC GOLD FOOTER
   Animated luxury footer bar
   ========================================================= */

footer,
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      120deg,
      #c79a2b 0%,
      #f3da8a 20%,
      #e1c15a 40%,
      #b8871f 60%,
      #f3da8a 80%,
      #c79a2b 100%
    ) !important;

  background-size: 300% 300%;
  animation: mwhGoldFlow 12s ease infinite;

  color: #1b160b !important;
  border-top: none !important;
}

/* metallic shine sweep */
footer::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.35) 40%,
    rgba(255,255,255,0.65) 50%,
    rgba(255,255,255,0.35) 60%,
    transparent 75%
  );
  background-size: 200% 100%;
  animation: mwhGoldShine 6s linear infinite;
  pointer-events: none;
}

/* gold flow movement */
@keyframes mwhGoldFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* shine sweep */
@keyframes mwhGoldShine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* footer text darker for contrast */
footer p,
footer a,
footer li,
footer h1,
footer h2,
footer h3,
footer h4 {
  color: #1b160b !important;
  font-weight: 600;
}

/* footer links hover */
footer a:hover {
  opacity: .85;
}
html, body { background: ... animation: ... }
body::before { ... }
.page .entry-content > .wp-block-group.alignfull,
.home .entry-content > .wp-block-group.alignfull { ... }
.wp-block-button__link ... 
.home .wp-block-group.has-background ...
/* =========================================================
   MIDWEST HORIZONS — METALLIC SHINE BUTTONS
   Matches the shiny gold footer effect
   ========================================================= */

.wp-block-button__link,
.wp-element-button,
button,
input[type="submit"]{
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    120deg,
    #c79a2b 0%,
    #f3da8a 25%,
    #e1c15a 50%,
    #b8871f 75%,
    #f3da8a 100%
  ) !important;

  background-size: 200% 200%;
  border-radius: 999px !important;
  color: #1b160b !important;
  font-weight: 800 !important;
  border: none !important;

  box-shadow:
    0 8px 20px rgba(225,193,90,.25),
    inset 0 1px 2px rgba(255,255,255,.25);

  transition: transform .2s ease, box-shadow .2s ease;
}

/* shine sweep */
.wp-block-button__link::before,
.wp-element-button::before,
button::before,
input[type="submit"]::before{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.6),
    transparent
  );

  transform: skewX(-20deg);
  animation: mwhButtonShine 5s linear infinite;
}

/* hover lift */
.wp-block-button__link:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover{
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(225,193,90,.35),
    inset 0 1px 2px rgba(255,255,255,.25);
}

/* shine animation */
@keyframes mwhButtonShine{
  0%{ left:-120%; }
  100%{ left:140%; }
}
/* HOME HERO RECOVERY */
.home .wp-block-group.alignfull .wp-block-group.has-border-color {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: 0 16px 42px rgba(0,0,0,0.28);
}

.home h1.wp-block-heading {
  letter-spacing: -0.03em;
}

.home .is-style-outline .wp-block-button__link {
  background: rgba(255,255,255,0.06) !important;
  color: #f5f2ea !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.home .is-style-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,0.10) !important;
}

@media (max-width: 900px) {
  .home h1.wp-block-heading {
    font-size: 46px !important;
    line-height: 1.02 !important;
  }
}
.home .wp-block-group.has-border-color {
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.home h1.wp-block-heading,
.home h2.wp-block-heading {
  letter-spacing: -0.03em;
}

.home .is-style-outline .wp-block-button__link {
  background: rgba(255,255,255,0.06) !important;
  color: #f5f2ea !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.home .is-style-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,0.10) !important;
}

.home ul {
  line-height: 1.8;
}

@media (max-width: 900px) {
  .home h1.wp-block-heading {
    font-size: 46px !important;
    line-height: 1.02 !important;
  }

  .home h2.wp-block-heading {
    font-size: 34px !important;
    line-height: 1.05 !important;
  }
}
/* =========================================================
   MIDWEST HORIZONS — MOBILE ONLY FIXES
   Safe sizing/layout cleanup without changing desktop
   ========================================================= */

@media (max-width: 900px) {

  /* page padding */
  .wp-block-group.alignfull,
  .wp-block-cover.alignfull,
  .wp-site-blocks > * {
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }

  /* columns stack cleanly */
  .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 24px !important;
  }

  .wp-block-column {
    flex-basis: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  /* headings scale down */
  h1,
  .wp-block-heading h1,
  .home h1.wp-block-heading {
    font-size: clamp(2.1rem, 9vw, 3rem) !important;
    line-height: 1.02 !important;
  }

  h2,
  .home h2.wp-block-heading {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    line-height: 1.08 !important;
  }

  h3 {
    font-size: clamp(1.25rem, 5.2vw, 1.6rem) !important;
    line-height: 1.15 !important;
  }

  p,
  li {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  /* hero buttons */
  .wp-block-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  .wp-block-buttons .wp-block-button {
    width: 100% !important;
  }

  .wp-block-buttons .wp-block-button .wp-block-button__link,
  .wp-block-buttons .wp-block-button .wp-element-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    white-space: normal !important;
    padding: 14px 18px !important;
  }

  /* little pill items / badges */
  .home p span[style*="display:inline-block"] {
    display: inline-block !important;
    margin-right: 8px !important;
    margin-bottom: 10px !important;
    white-space: normal !important;
  }

  /* images */
  .wp-block-image img,
  .wp-block-cover img {
    width: 100% !important;
    height: auto !important;
  }

  /* rounded panel spacing */
  .home .wp-block-group.has-border-color,
  .page .wp-block-group.has-border-color {
    padding: 22px !important;
    border-radius: 22px !important;
  }

  /* lists/cards breathing room */
  .wp-block-group,
  .wp-block-cover,
  .wp-block-media-text {
    overflow: hidden !important;
  }
}

/* slightly smaller phones */
@media (max-width: 600px) {
  .wp-site-blocks > *,
  .wp-block-group.alignfull,
  .wp-block-cover.alignfull {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  h1,
  .home h1.wp-block-heading {
    font-size: clamp(1.9rem, 10vw, 2.5rem) !important;
  }

  h2,
  .home h2.wp-block-heading {
    font-size: clamp(1.5rem, 7.5vw, 2rem) !important;
  }

  .home .wp-block-group.has-border-color,
  .page .wp-block-group.has-border-color {
    padding: 18px !important;
  }
}
/* =========================================================
   HOME HERO BUTTON FIX + SUBTLE HERO IMAGE LUXE EFFECT
   ========================================================= */

/* ------------------------------
   1) HERO BUTTON LAYOUT FIX
------------------------------ */
.home .wp-block-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 14px !important;
}

.home .wp-block-buttons .wp-block-button {
  width: auto !important;
  flex: 0 0 auto !important;
  display: inline-flex !important;
}

.home .wp-block-buttons .wp-block-button .wp-block-button__link,
.home .wp-block-buttons .wp-block-button .wp-element-button {
  width: auto !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* keep shine behind text and inside button */
.home .wp-block-buttons .wp-block-button .wp-block-button__link::before,
.home .wp-block-buttons .wp-block-button .wp-element-button::before {
  z-index: 0 !important;
  pointer-events: none !important;
}

.home .wp-block-buttons .wp-block-button .wp-block-button__link,
.home .wp-block-buttons .wp-block-button .wp-element-button,
.home .wp-block-buttons .wp-block-button .wp-block-button__link span,
.home .wp-block-buttons .wp-block-button .wp-element-button span {
  z-index: 1 !important;
}

/* outline button stays clean */
.home .is-style-outline .wp-block-button__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ------------------------------
   2) FEATURE PILL SPACING FIX
------------------------------ */
.home p span[style*="display:inline-block"] {
  vertical-align: middle !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

/* ------------------------------
   3) SUBTLE LUXURY HERO IMAGE EFFECT
------------------------------ */
.home .wp-block-image.size-full.has-custom-border img {
  box-shadow:
    0 18px 40px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 24px rgba(225,193,90,0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.home .wp-block-image.size-full.has-custom-border img:hover {
  transform: translateY(-2px);
  box-shadow:
    0 24px 52px rgba(0,0,0,0.40),
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 32px rgba(225,193,90,0.12);
  filter: brightness(1.02);
}

/* optional framed panel polish around the image */
.home .wp-block-column[style*="44%"] > .wp-block-group.has-border-color {
  box-shadow:
    0 18px 42px rgba(0,0,0,0.26),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

/* ------------------------------
   4) MOBILE SAFETY
------------------------------ */
@media (max-width: 900px) {
  .home .wp-block-buttons .wp-block-button {
    width: 100% !important;
  }

  .home .wp-block-buttons .wp-block-button .wp-block-button__link,
  .home .wp-block-buttons .wp-block-button .wp-element-button {
    width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
  }
}
.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.nav-links{
display:flex;
gap:12px;
}

.nav-cta{
display:flex;
gap:12px;
}

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

.showcase-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.pricing-wrap{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

@media(max-width:1000px){
.hero-grid,
.grid-3,
.showcase-grid,
.pricing-wrap{
grid-template-columns:1fr;
}
}
.mh-hero-wrap {
  padding: 120px 0 90px;
}

.mh-hero-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.mh-hero-glass {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  border-radius: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 100px rgba(0,0,0,0.40);
}

.mh-hero-eyebrow {
  color: #d6b04b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mh-hero-title {
  font-size: 58px;
  line-height: 1.02;
  margin: 0 0 20px;
  color: #ffffff;
}

.mh-hero-text {
  font-size: 19px;
  line-height: 1.7;
  color: #d4ccbf;
  margin: 0 0 18px;
}

.mh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  min-height: 54px;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;
  transition: all 0.2s ease;
}

.mh-btn-primary {
  background: #d6b04b;
  color: #111111 !important;
  border: 1px solid #d6b04b;
  box-shadow: 0 16px 40px rgba(214,176,75,0.18);
}

.mh-btn-primary:hover {
  background: #e1bc59;
  color: #111111 !important;
  transform: translateY(-1px);
}

.mh-btn-secondary {
  background: rgba(255,255,255,0.04);
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mh-btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #ffffff !important;
}

.mh-hero-meta {
  margin-top: 18px;
  font-size: 14px;
  color: #b5aa99;
}

.mh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mh-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  min-height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: #ddd6ca;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mh-hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.mh-hero-img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.mh-floating {
  margin-top: 14px;
  color: #d6b04b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .mh-hero-glass {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .mh-hero-title {
    font-size: 40px;
  }

  .mh-hero-wrap {
    padding: 90px 0 70px;
  }
}
.mh-section {
  padding: 90px 0;
}

.mh-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.mh-section-header {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.mh-section-eyebrow {
  color: #d6b04b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mh-section-title {
  font-size: 44px;
  line-height: 1.08;
  margin: 0 0 14px;
  color: #ffffff;
}

.mh-section-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #cfc6b9;
  margin: 0;
}

.mh-glass-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mh-glass-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mh-glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.mh-glass-card h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
}

.mh-glass-card p {
  margin: 0;
  color: #cfc6b9;
  font-size: 16px;
  line-height: 1.7;
}

.mh-proof-image {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.mh-proof-meta {
  color: #d6b04b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mh-highlight-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(214,176,75,0.18);
  border-radius: 28px;
  padding: 34px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

.mh-price {
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin: 18px 0 8px;
}

.mh-price-note {
  color: #d6b04b;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.mh-feature-list {
  margin: 0;
  padding-left: 20px;
  color: #d4ccbf;
}

.mh-feature-list li {
  margin: 0 0 10px;
  line-height: 1.7;
}

.mh-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: rgba(214,176,75,0.12);
  border: 1px solid rgba(214,176,75,0.24);
  color: #d6b04b;
  font-size: 14px;
  font-weight: 800;
}

.mh-big-cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(214,176,75,0.18);
  border-radius: 28px;
  padding: 42px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

.mh-big-cta h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.08;
}

.mh-big-cta p {
  margin: 0 auto 24px;
  max-width: 720px;
  color: #cfc6b9;
  font-size: 18px;
  line-height: 1.7;
}

.mh-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  padding: 32px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.34);
}

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

.mh-form-group {
  display: flex;
  flex-direction: column;
}

.mh-form-group-full {
  grid-column: 1 / -1;
}

.mh-label {
  margin-bottom: 8px;
  color: #ddd6ca;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mh-input,
.mh-select,
.mh-textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.mh-textarea {
  min-height: 130px;
  resize: vertical;
}

.mh-input:focus,
.mh-select:focus,
.mh-textarea:focus {
  border-color: rgba(214,176,75,0.58);
  background: rgba(255,255,255,0.06);
}

.mh-form-note {
  margin-top: 14px;
  color: #a89e8e;
  font-size: 14px;
}

@media (max-width: 920px) {
  .mh-glass-grid-3,
  .mh-glass-grid-2,
  .mh-form-grid {
    grid-template-columns: 1fr;
  }

  .mh-section-title,
  .mh-big-cta h2 {
    font-size: 34px;
  }

  .mh-price {
    font-size: 42px;
  }

  .mh-section {
    padding: 70px 0;
  }
}