:root{
  --bg:#F7F3EA;
  --bg-soft:#EFE8DA;
  --surface:#FFFFFF;
  --surface-2:#F8FAFC;
  --surface-3:#EEF2F7;

  --text:#172033;
  --text-soft:#293449;
  --muted:#647086;
  --muted-2:#8792A5;

  --navy:#172033;
  --navy-2:#253149;

  --gold:#B9924A;
  --gold-bright:#D8B86A;
  --gold-soft:#F4E7C8;
  --gold-dark:#7F632E;

  --danger:#B94A48;
  --danger-soft:rgba(185,74,72,.10);

  --success:#2F7D68;
  --success-soft:rgba(47,125,104,.10);

  --white:#FFFFFF;
  --line:rgba(23,32,51,.12);
  --line-strong:rgba(23,32,51,.20);

  --shadow:0 28px 80px rgba(23,32,51,.16);
  --shadow-soft:0 16px 44px rgba(23,32,51,.10);

  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:16px;

  --max:1180px;

  --panel:#FFFFFF;
  --panel2:#F8FAFC;
  --accent:#B9924A;
  --accent2:#7F632E;
  --accent3:#D8B86A;
  --good:#2F7D68;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  min-height:100vh;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(900px 520px at 8% 0%, rgba(216,184,106,.28), transparent 58%),
    radial-gradient(760px 520px at 92% 4%, rgba(23,32,51,.08), transparent 58%),
    radial-gradient(700px 520px at 50% 110%, rgba(216,184,106,.16), transparent 65%),
    linear-gradient(180deg, var(--bg) 0%, #FBFAF7 42%, var(--bg-soft) 100%);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  background-image:
    linear-gradient(rgba(23,32,51,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,32,51,.045) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.14) 70%, transparent);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.68), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.42), transparent 22%);
  opacity:.9;
}

a{
  color:inherit;
}

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

::selection{
  background:rgba(185,146,74,.28);
  color:var(--text);
}

/* WRAPPER */

.site-shell,
.container{
  width:min(var(--max), calc(100% - 36px));
  margin:0 auto;
  padding:22px 0 48px;
}

/* TOPBAR */

.topbar,
.nav{
  position:sticky;
  top:16px;
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(23,32,51,.12);
  border-radius:999px;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 14px 45px rgba(23,32,51,.10);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:max-content;
}

.brand-mark,
.logo{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:
    linear-gradient(135deg, #F2D889, var(--gold-bright) 42%, var(--gold));
  color:#172033;
  font-size:12px;
  font-weight:950;
  letter-spacing:.06em;
  box-shadow:
    0 12px 30px rgba(185,146,74,.22),
    inset 0 1px 0 rgba(255,255,255,.65);
}

.brand-copy strong,
.nav .brand b{
  display:block;
  font-size:14px;
  line-height:1.1;
  letter-spacing:-.01em;
  color:var(--text);
}

.brand-copy span,
.nav .brand span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:12px;
  line-height:1.1;
}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex:1;
}

.desktop-nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  padding:10px 12px;
  border-radius:999px;
  transition:.2s ease;
}

.desktop-nav a:hover{
  color:var(--text);
  background:rgba(23,32,51,.055);
}

.nav-actions,
.links{
  display:flex;
  align-items:center;
  gap:10px;
}

.nav-cta,
.links .cta,
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  color:#FFFFFF;
  font-size:13px;
  font-weight:950;
  background:linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow:0 14px 34px rgba(23,32,51,.16);
  transition:.2s ease;
  white-space:nowrap;
  border:0;
}

.nav-cta:hover,
.links .cta:hover,
.cta:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(23,32,51,.22);
}

.links .pill,
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--text-soft);
  text-decoration:none;
  font-size:13px;
  font-weight:800;
  transition:.2s ease;
  white-space:nowrap;
}

.links .pill:hover,
.pill:hover{
  border-color:rgba(185,146,74,.46);
  color:var(--text);
  background:rgba(244,231,200,.58);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:15px;
  background:rgba(255,255,255,.72);
  color:var(--text);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  border-radius:10px;
  background:var(--text);
}

/* MOBILE MENU */

.mobile-menu[hidden]{
  display:none!important;
}

.mobile-menu{
  display:none;
}

.mobile-menu.is-open{
  display:block;
  position:fixed;
  inset:0;
  z-index:90;
  padding:92px 18px 24px;
  background:rgba(247,243,234,.96);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.mobile-menu-inner{
  width:min(520px, 100%);
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-menu-inner a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  color:var(--text-soft);
  text-decoration:none;
  font-weight:850;
}

.mobile-menu-inner .mobile-cta{
  border-color:rgba(23,32,51,.18);
  background:linear-gradient(135deg, var(--navy-2), var(--navy));
  color:#FFFFFF;
  font-weight:950;
}

body.menu-open{
  overflow:hidden;
}

/* GENERAL */

.section{
  padding:74px 0;
}

.section-head{
  max-width:850px;
  margin-bottom:26px;
}

.section-kicker,
.card-label{
  display:inline-flex;
  align-items:center;
  width:max-content;
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.section-head h2{
  margin:10px 0 12px;
  font-size:clamp(34px, 5vw, 60px);
  line-height:.98;
  letter-spacing:-.065em;
  max-width:13ch;
  color:var(--text);
}

.section-head p{
  margin:0;
  max-width:760px;
  color:var(--muted);
  font-size:17px;
}

.card{
  position:relative;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow:var(--shadow-soft);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  background:linear-gradient(135deg, rgba(255,255,255,.84), transparent 45%);
  opacity:.72;
}

.card h3,
.card p,
.card ul,
.card li,
.card strong,
.card b,
.card span,
.card div{
  position:relative;
}

.card h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.035em;
  color:var(--text);
}

.card p{
  margin:0;
  color:var(--muted);
}

.card ul{
  margin:16px 0 0;
  padding-left:19px;
  color:var(--muted);
}

.card li{
  margin:9px 0;
}

.card strong,
.card b{
  color:var(--text);
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 20px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  font-weight:950;
  letter-spacing:-.01em;
  transition:.2s ease;
  white-space:nowrap;
}

.button-primary{
  color:#FFFFFF;
  background:linear-gradient(135deg, var(--navy-2), var(--navy));
  box-shadow:
    0 18px 42px rgba(23,32,51,.18),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.button-primary:hover{
  transform:translateY(-2px);
  box-shadow:
    0 24px 62px rgba(23,32,51,.25),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.button-secondary{
  border:1px solid rgba(23,32,51,.14);
  color:var(--text-soft);
  background:rgba(255,255,255,.72);
}

.button-secondary:hover{
  transform:translateY(-2px);
  border-color:rgba(185,146,74,.46);
  color:var(--text);
  background:rgba(244,231,200,.62);
}

.button-ghost{
  border:1px solid rgba(47,125,104,.22);
  color:var(--text-soft);
  background:rgba(47,125,104,.06);
}

.button-ghost::before{
  content:"";
  width:8px;
  height:8px;
  margin-right:8px;
  border-radius:99px;
  background:var(--success);
  box-shadow:0 0 18px rgba(47,125,104,.34);
}

.button-ghost:hover{
  transform:translateY(-2px);
  border-color:rgba(47,125,104,.36);
  background:rgba(47,125,104,.10);
}

/* HERO */

.hero-section{
  min-height:calc(100vh - 86px);
  display:flex;
  align-items:center;
  padding:78px 0 72px;
}

.hero-grid{
  width:100%;
  display:grid;
  grid-template-columns:minmax(0, 1.02fr) minmax(390px, .78fr);
  gap:34px;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  margin-bottom:18px;
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.hero-copy h1{
  margin:0;
  max-width:10.7ch;
  font-size:clamp(52px, 7.6vw, 96px);
  line-height:.89;
  letter-spacing:-.085em;
  font-weight:950;
  color:var(--text);
}

.hero-lead{
  max-width:680px;
  margin:24px 0 0;
  color:var(--text-soft);
  font-size:clamp(20px, 2.2vw, 28px);
  line-height:1.2;
  letter-spacing:-.035em;
  font-weight:850;
}

.hero-text{
  max-width:720px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:17px;
}

.hero-text strong{
  color:var(--text);
  font-weight:900;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.trust-line{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:24px;
}

.trust-line span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.58);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

/* DIAGNOSIS CARD */

.diagnosis-card{
  position:relative;
  overflow:hidden;
  padding:22px;
  border:1px solid rgba(185,146,74,.28);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(560px 260px at 18% 0%, rgba(216,184,106,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
  box-shadow:var(--shadow);
}

.diagnosis-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}

.diagnosis-top h2{
  margin:8px 0 0;
  font-size:26px;
  line-height:1;
  letter-spacing:-.055em;
  color:var(--text);
}

.pulse-dot{
  width:14px;
  height:14px;
  min-width:14px;
  min-height:14px;
  flex:0 0 14px;
  margin-top:4px;
  border-radius:999px;
  background:var(--danger);
  box-shadow:
    0 0 0 0 rgba(185,74,72,.18),
    0 0 26px rgba(185,74,72,.42);
  animation:pulseAlert 1.65s ease-in-out infinite;
}

@keyframes pulseAlert{
  0%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(185,74,72,.24),
      0 0 22px rgba(185,74,72,.36);
  }

  70%{
    transform:scale(1.06);
    box-shadow:
      0 0 0 13px rgba(185,74,72,0),
      0 0 30px rgba(185,74,72,.50);
  }

  100%{
    transform:scale(1);
    box-shadow:
      0 0 0 0 rgba(185,74,72,0),
      0 0 22px rgba(185,74,72,.36);
  }
}

.journey-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  align-items:stretch;
}

.journey-panel{
  display:flex;
  flex-direction:column;
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
  background:rgba(255,255,255,.64);
}

.danger-panel{
  background:
    linear-gradient(180deg, rgba(185,74,72,.065), rgba(255,255,255,.62));
}

.success-panel{
  background:
    linear-gradient(180deg, rgba(244,231,200,.68), rgba(47,125,104,.045));
  border-color:rgba(185,146,74,.22);
}

.journey-title{
  display:flex;
  align-items:center;
  gap:8px;
  min-height:20px;
  margin-bottom:16px;
  color:var(--text);
  font-size:13px;
  font-weight:950;
}

.status-dot{
  width:9px;
  height:9px;
  border-radius:99px;
  flex:0 0 auto;
}

.status-dot.red{
  background:var(--danger);
  box-shadow:0 0 16px rgba(185,74,72,.34);
}

.status-dot.green{
  background:var(--success);
  box-shadow:0 0 16px rgba(47,125,104,.34);
}

.journey-steps{
  display:grid;
  grid-template-rows:54px 24px 54px 24px 66px 24px 76px;
  justify-items:stretch;
  align-items:stretch;
  flex:1;
}

.journey-step,
.journey-result{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  min-height:0;
  padding:10px 12px;
  border-radius:14px;
  text-align:center;
  font-size:13px;
  font-weight:850;
  line-height:1.18;
}

.journey-step{
  border:1px solid var(--line);
  background:rgba(255,255,255,.68);
  color:var(--text-soft);
}

.journey-line{
  width:1px;
  height:100%;
  margin:0 auto;
  background:linear-gradient(180deg, rgba(23,32,51,.18), rgba(185,74,72,.32));
}

.journey-line.gold{
  background:linear-gradient(180deg, rgba(185,146,74,.38), rgba(47,125,104,.38));
}

.journey-result{
  color:var(--text);
}

.journey-result.lost{
  background:var(--danger-soft);
  border:1px solid rgba(185,74,72,.22);
}

.journey-result.won{
  background:linear-gradient(135deg, rgba(244,231,200,.78), rgba(47,125,104,.08));
  border:1px solid rgba(47,125,104,.24);
}

.diagnosis-footer{
  margin-top:16px;
  padding:15px 16px;
  border:1px solid rgba(185,146,74,.26);
  border-radius:18px;
  background:rgba(244,231,200,.52);
}

.diagnosis-footer strong{
  display:block;
  margin-bottom:4px;
  color:var(--text);
  font-size:14px;
}

.diagnosis-footer span{
  display:block;
  color:var(--muted);
  font-size:13px;
}

/* PROBLEM */

.problem-layout{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:18px;
  align-items:stretch;
}

.problem-story{
  padding:24px;
}

.story-list{
  position:relative;
  display:grid;
  gap:12px;
  margin-top:18px;
}

.story-item{
  position:relative;
  display:grid;
  grid-template-columns:42px 1fr;
  gap:12px;
  align-items:start;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
}

.story-item span{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  border-radius:13px;
  background:rgba(244,231,200,.72);
  border:1px solid rgba(185,146,74,.24);
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
}

.story-item p{
  margin:0;
  color:var(--muted);
}

.story-item strong{
  color:var(--text);
}

.truth-card{
  position:relative;
  overflow:hidden;
  padding:30px;
  border:1px solid rgba(185,74,72,.18);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(620px 280px at 16% 0%, rgba(185,74,72,.10), transparent 62%),
    radial-gradient(520px 260px at 96% 100%, rgba(216,184,106,.17), transparent 60%),
    rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}

.truth-label{
  display:inline-flex;
  color:var(--danger);
  font-size:12px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.truth-card h3{
  max-width:10ch;
  margin:18px 0 0;
  font-size:clamp(38px, 5vw, 62px);
  line-height:.94;
  letter-spacing:-.075em;
  color:var(--text);
}

.truth-card > p{
  margin:18px 0 0;
  color:var(--text);
  font-size:28px;
  line-height:1.05;
  font-weight:950;
  letter-spacing:-.05em;
}

.truth-divider{
  height:1px;
  margin:24px 0;
  background:linear-gradient(90deg, rgba(185,74,72,.34), rgba(185,146,74,.24), transparent);
}

.truth-copy{
  color:var(--muted)!important;
  font-size:16px!important;
  font-weight:500!important;
  letter-spacing:0!important;
  line-height:1.55!important;
}

.loss-box{
  display:grid;
  gap:5px;
  margin-top:20px;
  padding:17px;
  border:1px solid rgba(185,146,74,.24);
  border-radius:18px;
  background:rgba(244,231,200,.46);
}

.loss-box strong{
  color:var(--text);
  font-size:16px;
}

.loss-box span{
  color:var(--muted);
  font-size:14px;
}

/* SYSTEM */

.system-flow{
  display:grid;
  grid-template-columns:1fr 42px 1fr 42px 1fr 42px 1fr;
  gap:0;
  align-items:stretch;
}

.flow-card{
  min-height:294px;
  height:100%;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  box-shadow:var(--shadow-soft);
}

.flow-card.final{
  border-color:rgba(47,125,104,.26);
  background:
    linear-gradient(180deg, rgba(47,125,104,.07), rgba(244,231,200,.32)),
    rgba(255,255,255,.82);
}

.flow-number{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  min-width:44px;
  margin-bottom:22px;
  border-radius:16px;
  border:1px solid rgba(185,146,74,.28);
  background:rgba(244,231,200,.72);
  color:var(--gold-dark);
  font-size:14px;
  font-weight:950;
}

.flow-card h3{
  margin:0 0 10px;
  font-size:24px;
  line-height:1;
  letter-spacing:-.05em;
  color:var(--text);
}

.flow-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.flow-connector{
  align-self:center;
  height:2px;
  width:100%;
  background:linear-gradient(90deg, rgba(185,146,74,.24), rgba(185,146,74,.72));
  box-shadow:0 0 18px rgba(185,146,74,.18);
}

.system-punch{
  margin-top:18px;
  padding:20px 22px;
  border:1px solid rgba(185,146,74,.26);
  border-radius:var(--radius-lg);
  background:
    radial-gradient(560px 180px at 0% 0%, rgba(216,184,106,.22), transparent 60%),
    rgba(255,255,255,.66);
}

.system-punch strong{
  display:block;
  color:var(--text);
  font-size:20px;
  letter-spacing:-.035em;
}

.system-punch span{
  display:block;
  margin-top:4px;
  color:var(--muted);
}

/* SERVICES / CARDS */

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}

.service-grid-three{
  grid-template-columns:repeat(3, 1fr);
}

.service-card{
  min-height:265px;
  padding:22px;
  display:flex;
  flex-direction:column;
}

.service-tag{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  min-width:38px;
  flex:0 0 auto;
  margin-bottom:18px;
  border:1px solid rgba(185,146,74,.24);
  border-radius:14px;
  background:rgba(244,231,200,.64);
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
}

.service-card h3{
  font-size:22px;
  min-height:54px;
  display:flex;
  align-items:flex-start;
}

.service-card > p{
  font-size:15px;
  min-height:100px;
}

.service-card ul{
  margin-top:0;
  padding-top:18px;
  border-top:1px solid var(--line);
}

/* Karten ohne Liste nicht künstlich aufblasen */
#ueber-mich .service-card > p,
#servicegebiet .service-card > p{
  min-height:auto;
}

/* TRUST & CONTROL SECTION */

.trust-control-box{
  margin-top:18px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  padding:24px;
  align-items:start;
}

.trust-control-copy h3{
  margin:10px 0 10px;
  font-size:32px;
  line-height:1.02;
  letter-spacing:-.055em;
  color:var(--text);
}

.trust-control-copy p{
  color:var(--muted);
  margin:0;
}

.trust-control-list{
  display:grid;
  gap:12px;
}

.trust-control-list div{
  padding:16px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
}

.trust-control-list strong{
  display:block;
  color:var(--text);
  margin-bottom:5px;
  font-size:15px;
}

.trust-control-list span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.trust-note{
  margin-top:18px;
  padding:20px 22px;
}

.trust-note p{
  margin:0;
  color:var(--muted);
}

/* OFFER */

.offer-section{
  padding-top:86px;
}

.offer-layout{
  display:grid;
  grid-template-columns:1.18fr .82fr;
  gap:18px;
  align-items:stretch;
}

.offer-card{
  position:relative;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(185,146,74,.34);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(740px 300px at 0% 0%, rgba(216,184,106,.24), transparent 62%),
    radial-gradient(520px 250px at 100% 100%, rgba(23,32,51,.06), transparent 58%),
    rgba(255,255,255,.86);
  box-shadow:var(--shadow);
}

.offer-badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border:1px solid rgba(185,146,74,.28);
  border-radius:999px;
  background:rgba(244,231,200,.62);
  color:var(--gold-dark);
  font-size:11px;
  font-weight:950;
  letter-spacing:.11em;
  text-transform:uppercase;
}

.offer-top h3{
  margin:16px 0 8px;
  font-size:44px;
  line-height:.95;
  letter-spacing:-.07em;
  color:var(--text);
}

.offer-top p{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:16px;
}

.price-block{
  margin:28px 0;
  padding:24px;
  border:1px solid rgba(185,146,74,.24);
  border-radius:22px;
  background:rgba(255,255,255,.66);
}

.price-block span{
  display:block;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

.price-block strong{
  display:block;
  margin:4px 0;
  color:var(--text);
  font-size:clamp(54px, 7vw, 82px);
  line-height:.92;
  letter-spacing:-.085em;
}

.price-block small{
  display:block;
  color:var(--muted);
  font-size:13px;
}

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

.offer-columns div{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
}

.offer-columns h4{
  margin:0 0 10px;
  color:var(--gold-dark);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.10em;
}

.offer-columns ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  font-size:14px;
}

.offer-columns li{
  margin:8px 0;
}

.offer-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.proof-card{
  padding:24px;
}

.proof-card h3{
  margin-top:12px;
  font-size:32px;
}

.mini-offer{
  position:relative;
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  padding:18px;
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.62);
}

.mini-offer strong{
  display:block;
  color:var(--text);
  font-size:17px;
  line-height:1.15;
  letter-spacing:-.025em;
}

.mini-offer span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}

.mini-offer b{
  display:block;
  color:var(--gold-dark);
  font-size:28px;
  line-height:1;
  letter-spacing:-.05em;
}

.mini-offer small{
  display:block;
  color:var(--muted);
  font-size:12px;
}

.proof-note{
  margin-top:20px;
  padding:17px;
  border:1px solid rgba(47,125,104,.22);
  border-radius:18px;
  background:rgba(47,125,104,.07);
}

.proof-note strong{
  display:block;
  color:var(--success);
  margin-bottom:4px;
}

.proof-note span{
  color:var(--muted);
  font-size:14px;
}

/* TARGET */

.industry-wall{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 20px;
}

.industry-wall span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 15px;
  border:1px solid rgba(185,146,74,.22);
  border-radius:999px;
  background:
    linear-gradient(180deg, rgba(244,231,200,.58), rgba(255,255,255,.56));
  color:var(--text-soft);
  font-size:14px;
  font-weight:850;
}

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

.fit-card{
  padding:24px;
}

.fit-card li::marker{
  color:var(--gold-dark);
}

.muted-card{
  border-color:rgba(185,74,72,.16);
  background:
    linear-gradient(180deg, rgba(185,74,72,.045), rgba(255,255,255,.74));
}

.muted-card li::marker{
  color:var(--danger);
}

.value-punch{
  margin-top:18px;
  padding:22px;
  border:1px solid rgba(185,146,74,.26);
  border-radius:var(--radius-lg);
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(216,184,106,.24), transparent 62%),
    rgba(255,255,255,.62);
}

.value-punch strong{
  display:block;
  max-width:780px;
  color:var(--text);
  font-size:clamp(22px, 3vw, 34px);
  line-height:1.06;
  letter-spacing:-.055em;
}

/* WIDE CARD */

.wide-card{
  padding:28px;
  border-radius:var(--radius-xl);
}

.wide-card p{
  max-width:1060px;
  font-size:16px;
}

/* TIMELINE */

.timeline{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.timeline-item{
  padding:22px;
  min-height:210px;
}

.timeline-item span{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  margin-bottom:18px;
  border:1px solid rgba(185,146,74,.24);
  border-radius:14px;
  background:rgba(244,231,200,.64);
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
}

.timeline-item p{
  font-size:15px;
}

/* FAQ */

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

.faq-card{
  padding:22px;
  min-height:190px;
}

.faq-card h3{
  font-size:21px;
}

.faq-card p{
  font-size:15px;
}

/* FINAL CTA */

.final-section{
  padding:78px 0 40px;
}

.final-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:center;
  padding:34px;
  border:1px solid rgba(185,146,74,.30);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(800px 320px at 12% 0%, rgba(216,184,106,.28), transparent 60%),
    radial-gradient(520px 280px at 100% 100%, rgba(47,125,104,.08), transparent 58%),
    rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}

.final-copy h2{
  margin:12px 0 14px;
  max-width:12ch;
  font-size:clamp(42px, 6vw, 76px);
  line-height:.92;
  letter-spacing:-.08em;
  color:var(--text);
}

.final-copy p{
  max-width:680px;
  margin:0 0 12px;
  color:var(--muted);
  font-size:17px;
}

.final-copy p:last-child{
  margin-bottom:0;
}

.final-actions{
  display:grid;
  justify-items:stretch;
  gap:12px;
}

.final-actions .button{
  width:100%;
}

.mail-link{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  transition:.2s ease;
}

.mail-link:hover{
  color:var(--gold-dark);
}

/* FOOTER */

.footer{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:28px 0 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.footer-left{
  max-width:560px;
}

.footer-left strong{
  display:block;
  color:var(--text);
  margin-bottom:4px;
}

.footer-left span{
  font-size:13px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:12px;
  font-size:13px;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
}

.footer-links a:hover{
  color:var(--gold-dark);
}

/* UTILITY */

.hr{
  height:1px;
  width:100%;
  margin:28px 0;
  background:linear-gradient(90deg, rgba(185,146,74,.22), rgba(23,32,51,.10), transparent);
}

.small{
  color:var(--muted)!important;
  font-size:13px!important;
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
}

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

.steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.step{
  padding:22px;
}

.step .num{
  display:grid;
  place-items:center;
  width:40px;
  height:40px;
  margin-bottom:18px;
  border:1px solid rgba(185,146,74,.24);
  border-radius:14px;
  background:rgba(244,231,200,.64);
  color:var(--gold-dark);
  font-size:12px;
  font-weight:950;
}

/* LEGAL PAGES */

.container > main.section{
  padding:110px 0 74px;
}

.container > main.section h2{
  margin:10px 0 34px;
  font-size:clamp(42px, 6vw, 72px);
  line-height:.92;
  letter-spacing:-.08em;
}

.container > main.section > .card{
  padding:34px;
  border-radius:var(--radius-xl);
}

.container > main.section > .card h3{
  margin:26px 0 12px;
  font-size:24px;
}

.container > main.section > .card h3:first-child{
  margin-top:0;
}

.container > main.section > .card p{
  color:var(--muted);
  font-size:16px;
  max-width:1100px;
}

.container > main.section > .card .small{
  color:var(--muted)!important;
  font-size:15px!important;
  line-height:1.65;
}

.container > main.section > .card a{
  color:var(--gold-dark);
  font-weight:800;
}

/* RESPONSIVE */

@media(max-width:1080px){
  .desktop-nav{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .hero-grid,
  .problem-layout,
  .offer-layout,
  .final-card{
    grid-template-columns:1fr;
  }

  .hero-copy h1{
    max-width:12ch;
  }

  .diagnosis-card{
    max-width:760px;
  }

  .system-flow{
    grid-template-columns:1fr;
    gap:14px;
  }

  .flow-card{
    min-height:auto;
  }

  .flow-connector{
    width:2px;
    height:34px;
    margin:0 auto;
    background:linear-gradient(180deg, rgba(185,146,74,.24), rgba(185,146,74,.72));
  }

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

  .timeline,
  .steps{
    grid-template-columns:1fr 1fr;
  }

  .service-card h3,
  .service-card > p{
    min-height:auto;
  }

  .service-card ul{
    margin-top:16px;
    padding-top:14px;
  }
}

@media(max-width:760px){
  .site-shell,
  .container{
    width:min(100% - 28px, var(--max));
    padding-top:12px;
  }

  .topbar,
  .nav{
    top:10px;
    border-radius:22px;
    padding:10px;
  }

  .brand-mark,
  .logo{
    width:38px;
    height:38px;
    border-radius:13px;
  }

  .brand-copy strong,
  .nav .brand b{
    font-size:13px;
  }

  .brand-copy span,
  .nav .brand span{
    font-size:11px;
  }

  .nav-cta{
    display:none;
  }

  .links{
    display:none;
  }

  .hero-section{
    min-height:auto;
    padding:58px 0 48px;
  }

  .hero-copy h1{
    font-size:clamp(48px, 14vw, 72px);
    max-width:9.8ch;
  }

  .hero-lead{
    font-size:20px;
  }

  .hero-text{
    font-size:16px;
  }

  .button{
    width:100%;
    white-space:normal;
    text-align:center;
  }

  .trust-line span{
    flex:1 1 auto;
    justify-content:center;
  }

  .pulse-dot{
    width:12px;
    height:12px;
    min-width:12px;
    max-width:12px;
    min-height:12px;
    max-height:12px;
    flex:0 0 12px;
  }

  .journey-split{
    grid-template-columns:1fr;
  }

  .journey-steps{
    grid-template-rows:54px 22px 54px 22px 62px 22px 72px;
  }

  .section{
    padding:54px 0;
  }

  .section-head h2{
    font-size:clamp(36px, 10vw, 54px);
    max-width:11.5ch;
  }

  .section-head p{
    font-size:16px;
  }

  .problem-story,
  .truth-card,
  .offer-card,
  .final-card,
  .wide-card{
    padding:20px;
  }

  .story-item{
    grid-template-columns:1fr;
  }

  .truth-card h3{
    font-size:44px;
  }

  .truth-card > p{
    font-size:24px;
  }

  .service-grid,
  .service-grid-three,
  .fit-grid,
  .offer-columns,
  .timeline,
  .steps,
  .faq-grid,
  .grid3{
    grid-template-columns:1fr;
  }

  .service-card,
  .timeline-item,
  .faq-card,
  .step{
    min-height:auto;
  }

  .service-card h3,
  .service-card > p{
    min-height:auto;
  }

  .service-card ul{
    margin-top:16px;
    padding-top:14px;
  }

  .price-block{
    padding:20px;
  }

  .price-block strong{
    font-size:58px;
  }

  .offer-top h3{
    font-size:38px;
  }

  .trust-control-box{
    grid-template-columns:1fr;
    padding:20px;
  }

  .trust-control-copy h3{
    font-size:26px;
  }

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

  .footer-links{
    justify-content:flex-start;
  }

  .container > main.section{
    padding:74px 0 54px;
  }

  .container > main.section h2{
    font-size:clamp(38px, 11vw, 54px);
    margin-bottom:24px;
  }

  .container > main.section > .card{
    padding:22px;
  }
}

@media(max-width:420px){
  .hero-copy h1{
    font-size:46px;
  }

  .section-head h2,
  .final-copy h2{
    font-size:38px;
  }

  .truth-card h3{
    font-size:38px;
  }

  .price-block strong{
    font-size:50px;
  }

  .industry-wall span{
    width:100%;
    justify-content:center;
  }

  .topbar,
  .nav{
    gap:10px;
  }
}