:root{
  --bg: #0b0a0f;
  --bg2: #08070c;
  --card: rgba(255,255,255,.05);
  --card2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.94);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);
  --stroke: rgba(255,255,255,.12);
  --shadow: 0 32px 100px rgba(0,0,0,.45);

  /* Primary accent — deep crimson / wine */
  --crimson: rgb(168, 50, 72);
  --crimson-hover: rgb(140, 40, 60);
  --crimson-border: rgba(168, 50, 72, 0.8);
  --crimson-glow: rgba(168, 50, 72, 0.35);
  /* legacy token */
  --salmon: var(--crimson);
  --salmon-hover: var(--crimson-hover);
  --salmon-muted: rgba(168, 50, 72, 0.14);
  --surface-0: #0b0a0f;
  --surface-1: #12101a;
  --surface-2: #18161f;
  --pink: #e879f9;
  --pink2: #f0abfc;
  --mint: #5eead4;
  --mint-bright: #5ff5e8;
  --gold: #fcd34d;
  --violet: #a78bfa;
  --danger: #fb7185;

  --radius: 20px;
  --radius2: 28px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font-sans);
}

*,
*::before,
*::after{
  box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}
html{
  scroll-behavior: smooth;
}
body{
  margin:0;
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  color:var(--text);
  background: var(--surface-0);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168, 50, 72, 0.06), transparent 55%),
    linear-gradient(180deg, #0b0a0f 0%, #08070c 40%, #060509 100%);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section__title{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.95}

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

.skip-link{
  position:absolute; left:12px; top:12px;
  padding:10px 12px;
  background: rgba(255,255,255,.14);
  border:1px solid var(--stroke);
  border-radius: 12px;
  transform: translateY(-140%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{transform: translateY(0)}

.container{
  width: calc(100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
  box-sizing: border-box;
  min-width: 0;
}
@media (max-width: 640px){
  .container{
    width: calc(100% - 44px);
  }
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 0.2s ease;
}
.site-header.is-scrolled{
  background: rgba(8, 7, 12, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 0 16px;
}
@media (max-width: 640px){
  .nav{
    padding-top: 12px;
    padding-bottom: 14px;
  }
}
.nav .brand{
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 4px;
}

.brand{
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand--stacked .brand__stack{
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}
.brand__line{
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.brand__sub{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.brand--footer .brand__line,
.brand--footer .brand__sub{
  color: inherit;
}
.brand--footer .brand__sub{
  opacity: 0.75;
}

.nav__links{
  display:flex;
  align-items:center;
  gap: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.86);
}
.nav__links a{padding: 10px 10px; border-radius: 12px}
.nav__links a:not(.btn):hover{background: rgba(255,255,255,.06)}

.nav__toggle{
  display:none;
  flex: 0 0 auto;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  border-radius: 14px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  cursor:pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,.96);
  -webkit-tap-highlight-color: transparent;
}
.nav__toggleSvg{
  display: block;
  margin: 0 auto;
}
.nav .nav__mobileCta{
  display: none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  font-weight: 900;
  letter-spacing: .1px;
  cursor:pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, filter .2s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: rgba(168, 50, 72, 1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(168, 50, 72, 0.3);
}
.btn--primary:hover{
  background: rgba(140, 40, 60, 1);
  opacity: 1;
  box-shadow: 0 4px 18px rgba(168, 50, 72, 0.38);
}
.btn--salmon{
  background: rgba(168, 50, 72, 1);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(168, 50, 72, 0.3);
}
.btn--salmon:hover{
  background: rgba(140, 40, 60, 1);
  opacity: 1;
  box-shadow: 0 4px 18px rgba(168, 50, 72, 0.38);
}
.btn--outline-light{
  background: transparent;
  border: 1.5px solid rgba(168, 50, 72, 0.8);
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
}
.btn--outline-light:hover{
  background: rgba(168, 50, 72, 0.12);
  opacity: 1;
  box-shadow: 0 0 15px rgba(168, 50, 72, 0.35);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn--ghost:hover{background: rgba(255,255,255,.10)}
.btn--sm{padding: 9px 12px; border-radius: 12px; font-weight: 900}
.btn--wide{width:100%}
.btn--fat{padding: 16px 22px; font-size: 17px; border-radius: 16px}
.btn--hero{
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 14px;
  min-height: 48px;
}
.btn--nav-cta{padding: 12px 18px; font-size: 14px; border-radius: 8px; font-weight: 900}
.btn.btn--salmon.btn--hero,
.btn.btn--outline-light.btn--hero{
  border-radius: 8px;
}

.fab-apply{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  margin: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding: 16px 20px;
  padding-bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  font-size: 17px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 -12px 48px rgba(0,0,0,.45);
}
.fab-apply:hover{filter: brightness(1.06)}

/* —— Hero: full-bleed video ([Louna's Models](https://lounasmodels.com/) style) —— */
.hero--video{
  position: relative;
  isolation: isolate;
  min-height: min(100vh, 920px);
  display: flex;
  align-items: center;
  padding: clamp(104px, 12vh, 132px) 0 clamp(40px, 6vh, 72px);
  overflow: hidden;
}
.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #12101a;
  overflow: hidden;
}
.hero__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(8, 7, 12, 0.92) 0%, rgba(8, 7, 12, 0.55) 45%, rgba(15, 12, 22, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, transparent 35%);
}
@media (prefers-reduced-motion: reduce){
  .hero__video{
    display: none;
  }
}
.hero__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 38rem;
  min-width: 0;
}
.hero__label{
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.hero__trustBadge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}
.hero__trustIcon{
  color: var(--crimson);
  font-size: 15px;
}
.hero__trustBadge strong{
  color: var(--crimson);
}
.hero__headline{
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
}
.hero__lead{
  margin: 0 0 30px;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  max-width: 34rem;
}
.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 640px){
  .serviceBento{
    grid-template-columns: 1fr;
  }
  .results-gallery{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px){
  .brand__line{font-size: 12px}
  .brand__sub{font-size: 9px}
  .hero.hero--video .hero__actions .btn.btn--hero{
    font-size: 12px;
    padding: 0 8px;
  }
}

.section--about{
  padding-top: 72px;
  padding-bottom: 68px;
}
.aboutLead{
  font-size: 1.06rem;
  line-height: 1.65;
  max-width: 65ch;
}

.float-chat{
  position: fixed;
  right: max(16px, calc(env(safe-area-inset-right, 0px) + 8px));
  bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-chat__trigger{
  width: 58px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  color: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.float-chat__trigger:hover{
  transform: scale(1.06);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
}
.float-chat__trigger svg{
  display: block;
}
.float-chat__menu{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.float-chat.is-open .float-chat__menu{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.float-chat__option{
  min-width: 148px;
  padding: 11px 16px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(12, 15, 22, 0.82);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.94);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}
.float-chat__option:hover{
  opacity: 1;
  background: rgba(18, 22, 31, 0.94);
  border-color: rgba(255,255,255,.18);
}
.float-chat__icon{
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}
.float-chat__option--telegram .float-chat__icon{
  width: 13px;
  height: 13px;
}
.float-chat__option--whatsapp .float-chat__icon{
  width: 21px;
  height: 21px;
}

.badge{
  display:inline-flex;
  flex-direction: column;
  align-items:flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  font-weight: 900;
  font-size: 22px;
}
.badge__label{
  font-weight: 800;
  font-size: 12px;
  opacity:.8;
}
.sparkles{opacity:.92}

.section{padding: 64px 0}
.section--surface{
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.section--alt{
  background: linear-gradient(180deg, rgba(18, 16, 26, 0.65) 0%, rgba(8, 7, 12, 0.4) 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.section__head{margin-bottom: 28px}
.section__kicker{
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section__title{
  margin:0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.4px;
}
.section__subtitle{
  margin:0;
  color: var(--muted);
  max-width: 72ch;
}
.section__head--tight{margin-bottom: 14px}
.section__head--tight .section__title{margin-bottom: 6px}

.section__head--center{
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 44px;
}
.section__head--center .section__subtitle{
  margin-inline: auto;
}

.section--services{
  position: relative;
  padding-top: 72px;
  padding-bottom: 76px;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(185deg, #0e0c14 0%, #0b0a0f 50%, #08070c 100%);
}
.servicesBg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(168, 50, 72, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 60%, rgba(255, 255, 255, 0.03), transparent 50%);
}
.servicesBg::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 20%, transparent 75%);
}
.servicesInner{
  position: relative;
  z-index: 1;
}
.servicesIntro__eyebrow{
  display: inline-block;
  padding: 7px 16px;
  margin-bottom: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.servicesIntro__title{
  max-width: 22ch;
  margin-inline: auto;
}
.servicesIntro__lead{
  max-width: 46ch;
}

/* Responsive card grid: fills row with as many boxes as fit (2×2 on tablet, 4 across on desktop) */
.section--services .section__head--center,
.section--services .servicesIntro{
  text-align: center;
}
.section--services .servicesIntro__title,
.section--services .servicesIntro__lead{
  margin-left: auto;
  margin-right: auto;
}

.serviceBento{
  display: grid;
  width: 100%;
  min-width: 0;
  gap: clamp(14px, 2vw, 20px);
  /* 2×2 on most screens; 1 column only on very narrow phones */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
@media (min-width: 1100px){
  .serviceBento{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.serviceCard{
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 228px;
  padding: 22px 22px 24px;
  border-radius: var(--radius2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(160deg, rgba(18,14,28,.95), rgba(10,8,16,.88));
  box-shadow:
    0 4px 0 rgba(255,255,255,.04) inset,
    0 28px 70px rgba(0,0,0,.4);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.serviceCard::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-line, #f472b6), transparent 85%);
  opacity: 1;
}
.serviceCard::after{
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at 70% 30%, var(--svc-glow, rgba(244,114,182,.12)), transparent 65%);
  pointer-events: none;
  opacity: .9;
}
@media (prefers-reduced-motion: no-preference){
  .serviceCard:hover{
    transform: translateY(-5px);
    border-color: rgba(255,255,255,.16);
    box-shadow:
      0 4px 0 rgba(255,255,255,.06) inset,
      0 36px 90px rgba(0,0,0,.5);
  }
}
.serviceCard--rose,
.serviceCard--violet,
.serviceCard--cyan,
.serviceCard--amber{
  --svc-line: rgba(168, 50, 72, 0.95);
  --svc-glow: rgba(168, 50, 72, 0.1);
  --svc-icon-bg: rgba(168, 50, 72, 0.12);
  --svc-icon-fg: rgba(255, 220, 225, 0.95);
}

.serviceCard__index{
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.05);
  user-select: none;
  pointer-events: none;
}
.serviceCard__top{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-right: 3rem;
}
.serviceCard__icon{
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--svc-icon-fg);
  background: var(--svc-icon-bg);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}
.serviceCard__title{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}
.serviceCard__text{
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.servicesFoot{
  margin: 36px 0 0;
  text-align: center;
}
.servicesFoot__link{
  display: inline-block;
  font-weight: 800;
  font-size: 15px;
  color: var(--salmon);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(168, 50, 72, 0.45);
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
.servicesFoot__link:hover{
  color: #f5c4c4;
  text-decoration-color: rgba(245, 196, 196, 0.65);
}

.statsBand{
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(90deg, rgba(168, 50, 72, 0.06), transparent 35%, transparent 65%, rgba(168, 50, 72, 0.05)), rgba(10, 9, 14, 0.85);
}
.statsBand__inner{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 28px 0;
}
.statsBand__item{
  text-align: center;
  padding: 12px 8px;
}
.statsBand__num{
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, rgba(255,255,255,.75));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statsBand__label{
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted2);
}

.section--earnings-plan{padding-top: 52px; padding-bottom: 56px}
.earnings-plan__lead{
  margin: 0 0 28px;
  max-width: 72ch;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
}
.earnings-plan__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}
.earnings-plan__card{
  margin: 0;
  padding: 22px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.earnings-plan__icon{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
  background: rgba(168, 50, 72, 0.2);
  border: 1px solid rgba(168, 50, 72, 0.35);
  color: #fff;
}
.earnings-plan__cardTitle{
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.earnings-plan__cardText{
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}
.earnings-plan__banner{
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(45, 80, 88, 0.35), rgba(18, 28, 32, 0.92));
  border: 1px solid rgba(94, 234, 212, 0.12);
}
.earnings-plan__banner p{
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.55;
}
.earnings-plan__checkWrap{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-bottom: 24px;
}
.earnings-plan__checks{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.earnings-plan__checks li{
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
}
.earnings-plan__checks li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #34d399;
  font-weight: 900;
  font-size: 15px;
}
.earnings-plan__phases{
  margin: 0 0 28px;
  padding: 22px 22px;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(60, 30, 55, 0.55), rgba(20, 14, 24, 0.95));
  border: 1px solid rgba(168, 50, 72, 0.22);
}
.earnings-plan__phases p{
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.55;
}
.earnings-plan__phases p + p{
  margin-top: 14px;
}
.earnings-plan__phasesLead{
  font-weight: 800 !important;
  font-size: 16px !important;
  margin: 0 0 12px !important;
}
.earnings-plan__cta{
  display: flex;
  justify-content: center;
}
.earnings-plan__cta .btn--wide{
  max-width: 420px;
}

.section--steps{
  padding-top: 56px;
  padding-bottom: 56px;
}
.steps3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.steps3__item{
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.92), rgba(14, 13, 20, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-top: 2px solid rgba(168, 50, 72, 0.45);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.steps3__item:hover{
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.steps3__icon{
  font-size: 26px;
  font-weight: 900;
  color: var(--salmon);
  margin-bottom: 10px;
  line-height: 1;
}
.steps3__title{margin: 0 0 8px; font-size: 18px}
.steps3__text{margin: 0; color: var(--muted); font-weight: 700; font-size: 14.5px; line-height: 1.45}

.pricing__panel--emphasis{
  border-color: rgba(168, 50, 72, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(168, 50, 72, 0.08) inset;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.5), rgba(14, 13, 20, 0.75));
}
.pricing__grid--big{
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px){
  .pricing__grid--big{grid-template-columns: repeat(3, minmax(0, 1fr))}
}
.pill--large{
  padding: 18px 16px;
  min-height: 110px;
  align-items: flex-start;
}
.pill__top--xl{
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.pill--large .pill__bottom{
  font-size: 13px;
  line-height: 1.35;
  margin-top: 4px;
}
.effort-line{
  margin: 18px 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(168, 50, 72, 0.08);
  border: 1px solid rgba(168, 50, 72, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.results-gallery{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.results-gallery__item{
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.results-gallery__item a{display:block; line-height: 0}
.results-gallery__item img{
  width: 100%;
  height: auto;
  display: block;
  opacity: .95;
  transition: opacity .2s ease;
}
.results-gallery__item a:hover img{opacity: 1}
.results-gallery__cap{
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--muted2);
}
.results-disclaimer{
  margin: 16px 0 0;
  font-size: 12.5px;
  color: var(--muted2);
  font-weight: 700;
  max-width: 70ch;
}

.section--apply{
  padding-top: 56px;
  padding-bottom: 72px;
}

.applyBlock{
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3.2vw, 32px);
  width: 100%;
  align-items: stretch;
}
.applyIntro__kicker{
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.applyIntro__title{
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: #fff;
}
.applyIntro__lead{
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}
.applyIntro__meta{
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--muted);
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card{
  padding: 20px 18px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.88), rgba(12, 11, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(168, 50, 72, 0.25);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}
.card__icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(168, 50, 72, 0.1);
  border: 1px solid rgba(168, 50, 72, 0.2);
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 900;
  color: #fce8e8;
}
.card h3{margin:0 0 6px; font-size: 18px; letter-spacing:-.2px}
.card p{margin:0; color: var(--muted)}

.pricing{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items: start;
}
.pricing__panel{
  border-radius: var(--radius2);
  padding: 18px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.pricing__title{margin:0 0 6px; font-size: 20px}
.pricing__desc{margin:0 0 14px; color: var(--muted)}
.pricing__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 14px;
}
.pill{
  display:flex;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.pill__icon{
  width: 38px; height: 38px;
  border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(168, 50, 72, 0.1);
  border: 1px solid rgba(168, 50, 72, 0.2);
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  color: #fce8e8;
}
.pill__top{font-weight: 900}
.pill__bottom{color: var(--muted2); font-weight: 700; font-size: 12px}
.checklist{
  list-style:none;
  padding:0;
  margin: 0 0 14px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  color: rgba(255,255,255,.84);
  font-weight: 700;
}
.checklist li{
  position:relative;
  padding-left: 22px;
}
.checklist li::before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: var(--salmon);
  font-weight: 900;
}
.note{
  background: rgba(168, 50, 72, 0.1);
  border: 1px solid rgba(168, 50, 72, 0.22);
  padding: 14px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.note p{margin:0}
.note p + p{margin-top: 8px; color: rgba(255,255,255,.78)}
.fineprint{margin: 10px 0 0; color: rgba(255,255,255,.72); font-weight: 700; font-size: 12.5px}

.trust{
  display:grid;
  gap: 14px;
}
.trust__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.trust__item{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  font-weight: 900;
  text-align:center;
  color: rgba(255,255,255,.86);
}
.trust__promo{
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(168, 50, 72, 0.1), rgba(22, 20, 32, 0.6));
  border: 1px solid rgba(168, 50, 72, 0.2);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}
.trust__promo h3{margin:0 0 6px}
.trust__promo p{margin:0 0 12px; color: var(--muted)}

.formWrap{
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  min-width: 0;
  border-radius: 18px;
  padding: 20px 18px;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.88), rgba(12, 11, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  overflow-x: clip;
  color-scheme: dark;
}
.form{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.form.form--apply{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  align-items: start;
}
.formApply__col{
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.formApply__footer{
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.formApply__footer .formActions{
  justify-content: stretch;
  padding-top: 0;
}
.formApply__footer .form__submit.btn{
  width: 100%;
  max-width: none;
}
.formGroup{
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.form.form--apply .form-container .formGroup{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
  border-bottom: none;
  padding-bottom: 0;
}
.form.form--apply .form-container .formGroup__title{
  grid-column: 1 / -1;
  margin: 0 0 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}
.form.form--apply .form-container .formGroup .field--span,
.form.form--apply .form-container .formGroup .field--inline,
.form.form--apply .form-container .formGroup > .formGroup__error{
  grid-column: 1 / -1;
}
.formGroup:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}
.formGroup__title{
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.formGroup__error{
  min-height: 1.2em;
}
@media (max-width: 900px){
  .form-container{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .form.form--apply .form-container .formGroup{
    grid-template-columns: 1fr;
  }
}
.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}
.formWrap .field:not(.field--inline) > label{
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.78);
}
.field input,
.field select,
.field textarea{
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: block;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: #121212;
  color: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--crimson);
  box-shadow:
    0 0 0 3px rgba(168, 50, 72, 0.35),
    0 0 28px rgba(168, 50, 72, 0.22),
    0 0 56px rgba(168, 50, 72, 0.12);
}
.field textarea{resize: vertical; min-height: 104px}
.field__help{margin:0; color: var(--muted2); font-weight: 700; font-size: 12.5px}
.field__error{margin:0; color: var(--danger); font-weight: 900; min-height: 1.2em}
.counter{margin-left:auto; color: rgba(255,255,255,.66); font-weight: 800; font-size: 12px}

.field--inline{
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  max-width: 100%;
  min-width: 0;
}
.field--inline input[type="checkbox"]{
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 4px;
  accent-color: var(--crimson);
}
.field--inline label{
  font-weight: 600;
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.55;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.form:not(.form--apply) button,
.form:not(.form--apply) .form__submit{grid-column: 1 / -1}
.form:not(.form--apply) .form__secureNote{grid-column: 1 / -1}
.form:not(.form--apply) .fineprint{grid-column: 1 / -1}

.formActions{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}
@media (max-width: 520px){
  .formActions{
    justify-content: center;
  }
  .form__submit.btn{
    width: 100%;
  }
}
.form__submit.btn{
  width: auto;
  max-width: 100%;
  padding: 18px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  background: rgba(168, 50, 72, 1);
  box-shadow: 0 4px 15px rgba(168, 50, 72, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form__submit.btn:hover{
  transform: translateY(-1px);
  background: rgba(140, 40, 60, 1);
  box-shadow:
    0 6px 20px rgba(168, 50, 72, 0.38),
    0 0 12px rgba(168, 50, 72, 0.25);
}
.form__submit.btn:active{
  transform: translateY(0);
  background: rgba(130, 36, 55, 1);
}
.form__secureNote{
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.38);
  text-align: left;
}
.form.form--apply .fineprint{
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
.form__toast{
  grid-column: 1 / -1;
  margin: 0;
  font-weight: 900;
  color: rgba(255,255,255,.86);
}
.form.form--apply .form__toast{
  grid-column: unset;
}
.form__toast.is-error{color: var(--danger)}
.form__toast.is-ok{color: var(--mint)}

.quotes{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote{
  margin:0;
  padding: 20px 20px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.85), rgba(12, 11, 18, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}
.quote__stars{color: var(--crimson); letter-spacing:0.02em; font-weight: 800; font-size: 13px}
.quote blockquote{margin: 10px 0 12px; color: rgba(255,255,255,.84); font-weight: 700}
.quote figcaption{
  display:flex;
  flex-direction: column;
  gap: 2px;
  color: rgba(255,255,255,.82);
}
.quote__metric{font-weight: 900; color: rgba(255,255,255,.9)}
.quote__name{font-weight: 900}
.quote__meta{color: var(--muted2); font-weight: 800; font-size: 12.5px}

.ctaRow{
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 18px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  background: linear-gradient(105deg, rgba(168, 50, 72, 0.08), rgba(18, 16, 26, 0.6));
  border: 1px solid rgba(168, 50, 72, 0.15);
}
.ctaRow h3{margin:0}

.faq{
  display:grid;
  gap: 10px;
}
.faq__item{
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 16, 26, 0.55);
  overflow:hidden;
}
.faq__item summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 14px;
  font-weight: 900;
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item[open] summary{
  background: rgba(255,255,255,.06);
}
.faq__content{padding: 0 14px 14px; color: rgba(255,255,255,.82); font-weight: 700}
.faq__content p{margin: 0}

.footer{
  padding: 52px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, #08070c, #050408);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 18px;
  align-items:start;
}
.brand--footer{margin-bottom: 10px}
.footer__brand p{margin:0; color: var(--muted)}
.footer__col h3{margin:0 0 10px}
.footer__col a{display:block; padding: 8px 0; color: rgba(255,255,255,.84); font-weight: 800}
.footer__col a:hover{color: rgba(255,255,255,.96)}
.footer__note{margin:8px 0 0; color: var(--muted2); font-weight: 800; font-size: 12.5px}
.footer__bottom{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  flex-wrap:wrap;
}
.footer__links{display:flex; align-items:center; gap: 10px}
.footer__links a{color: rgba(255,255,255,.72)}
.footer__links a:hover{color: rgba(255,255,255,.9)}

.toTop{
  position: fixed;
  right: max(16px, calc(env(safe-area-inset-right, 0px) + 8px));
  bottom: calc(176px + env(safe-area-inset-bottom, 0px));
  z-index: 255;
  width: 46px;
  height: 46px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.9);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.toTop.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toTop:hover{background: rgba(255,255,255,.08)}

@media (max-width: 980px) and (min-width: 641px){
  .hero--video{
    min-height: 100svh;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: calc(env(safe-area-inset-top, 0px) + 92px);
    padding-bottom: max(32px, calc(env(safe-area-inset-bottom, 0px) + 24px));
  }
}
@media (max-width: 980px){
  .hero__inner{
    max-width: none;
  }
  .pricing{grid-template-columns: 1fr}
  .pricing__grid{grid-template-columns: 1fr}
  .checklist{grid-template-columns: 1fr}
  .quotes{grid-template-columns: 1fr}
  .footer__grid{grid-template-columns: 1fr}
  .steps3{grid-template-columns: 1fr}
  .results-gallery{grid-template-columns: 1fr}
  .statsBand__inner{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .earnings-plan__grid{grid-template-columns: 1fr}
  .earnings-plan__checkWrap{grid-template-columns: 1fr}
  .form{grid-template-columns: 1fr}
}

@media (max-width: 860px){
  .statsBand__inner{grid-template-columns: 1fr; padding: 20px 0}
  .cards{grid-template-columns: 1fr}
  .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 12px;
  }
  .nav .nav__mobileCta{
    display: inline-flex;
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 6px;
    padding: 8px 12px;
    min-height: 36px;
    font-size: 11px;
    line-height: 1;
    border-radius: 10px;
    background: rgb(168, 50, 72);
    box-shadow: none;
    filter: none;
  }
  .nav .nav__mobileCta:hover{
    background: rgb(140, 40, 60);
    box-shadow: none;
  }
  .nav__links{
    position:absolute;
    top: 58px;
    left: max(16px, env(safe-area-inset-left, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    display:none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 18px;
    background: rgba(10, 7, 14, .86);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
  }
  .nav__links.is-open{display:flex}
  .nav__links a{padding: 12px 12px}
}

/* Mobile — loaded last: no horizontal scroll; sticky bar off; FAB; hero 768px spec */
@media (max-width: 768px){
  html,
  body{
    overflow-x: hidden;
    max-width: 100%;
  }
  body{
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
  }
  #main{
    overflow-x: hidden;
    max-width: 100%;
  }
  .fab-apply{
    display: none;
  }
  .float-chat{
    z-index: 500;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 8px));
  }
  .float-chat__trigger{
    width: 48px;
    height: 48px;
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
  }
  .float-chat__option{
    min-width: 142px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .toTop{
    z-index: 520;
    right: max(12px, env(safe-area-inset-right, 0px));
    bottom: max(86px, calc(env(safe-area-inset-bottom, 0px) + 70px));
  }
  /* Header: logo & menu at corners, 20px inset, wider gap */
  .site-header .container{
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .site-header .nav.container{
    padding: 16px 8px 16px 16px;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .brand__line{
    font-size: 14px;
  }
  .site-header .brand__sub{
    font-size: 10px;
  }
  .nav .brand{
    padding-right: 0;
  }
  .nav .nav__mobileCta{
    margin-left: auto;
    margin-right: 6px;
  }
  .nav .nav__toggle{
    margin-left: 0;
    margin-right: 0;
  }
  .hero__headline,
  .hero__lead,
  .hero__trustBadge,
  .section__title,
  .section__subtitle{
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  /* Hero: 100vh bg, 15vh top offset, uniform 25px vertical rhythm */
  .hero.hero--video{
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    padding-top: 0;
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }
  .hero.hero--video .hero__media{
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero.hero--video .hero__video{
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 84% center;
    transform: none;
    will-change: auto;
  }
  .hero.hero--video .hero__scrim{
    background-color: rgba(0, 0, 0, 0.4);
  }
  .hero.hero--video .hero__inner.container{
    max-width: none;
    width: 100%;
    margin-inline: auto;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding-top: calc(env(safe-area-inset-top, 0px) + 5vh);
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
  .hero.hero--video .hero__label{
    margin: 0 0 25px;
    line-height: 1.6;
    font-size: 12px;
  }
  .hero.hero--video .hero__trustBadge{
    margin: 0 0 25px;
    padding: 10px 18px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
  }
  .hero.hero--video .hero__headline{
    font-size: 32px;
    line-height: 1.35;
    margin: 0 0 25px;
    letter-spacing: -0.02em;
  }
  .hero.hero--video .hero__lead{
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 25px;
    max-width: none;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
  .hero.hero--video .hero__actions{
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    align-items: stretch;
    gap: 10px;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hero.hero--video .hero__actions .btn.btn--hero{
    min-width: 0;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 800;
    border-radius: 12px;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero.hero--video .hero__actions .btn.btn--salmon.btn--hero{
    background: rgba(168, 50, 72, 1);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(168, 50, 72, 0.3);
  }
  .hero.hero--video .hero__actions .btn.btn--salmon.btn--hero:hover{
    background: rgba(140, 40, 60, 1);
    box-shadow: 0 4px 18px rgba(168, 50, 72, 0.38);
  }
  .hero.hero--video .hero__actions .btn.btn--outline-light.btn--hero{
    padding-inline: 14px;
    font-size: 14px;
    letter-spacing: -0.01em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 8px 20px rgba(0, 0, 0, 0.16);
  }
  .hero.hero--video .hero__actions .btn.btn--outline-light.btn--hero:hover{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 24px rgba(0, 0, 0, 0.18);
  }
  .formWrap{
    padding: 18px 16px;
    border-radius: 18px;
  }
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"],
  .field input[type="url"],
  .field input[type="search"],
  .field input[type="number"],
  .field select,
  .field textarea{
    font-size: 16px;
  }
}

@media (max-width: 420px){
  .nav__mobileCta{
    padding: 10px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) and (prefers-reduced-motion: reduce){
  .hero.hero--video .hero__video{
    transform: none;
    will-change: auto;
  }
}

/* Modal styles */
.modal{
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal[aria-hidden="false"]{
  opacity: 1;
  visibility: visible;
}
.modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.modal__container{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: linear-gradient(165deg, rgba(22, 20, 32, 0.98), rgba(12, 11, 18, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal[aria-hidden="false"] .modal__container{
  transform: translateY(0) scale(1);
}
.modal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.modal__close:hover{
  background: rgba(168, 50, 72, 0.3);
  border-color: rgba(168, 50, 72, 0.5);
}
.modal__header{
  padding: 32px 32px 0;
  text-align: center;
}
.modal__header .applyIntro__title{
  margin-top: 8px;
}
.modal__body{
  padding: 24px 32px 32px;
}
.modal__body .form--apply{
  max-width: none;
}

@media (max-width: 768px){
  .modal{
    padding: 12px;
    align-items: flex-start;
  }
  .modal__container{
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 20px;
  }
  .modal__header{
    padding: 24px 20px 0;
  }
  .modal__body{
    padding: 20px 20px 24px;
  }
  .modal__close{
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

body.modal-open{
  overflow: hidden;
}

