/* ================================
   GLOBAL / RESET
==================================*/
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
:root{
  --navy: #011b28;
  --ink:#0a0a0a;
  --body:#1a1a1a;
  --muted:#444;
  --sky:#dbe9ff;
  --card:#fff;
  --bg:#f7f9fb;
  --cta:#00c46a;
}

html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Roboto", Arial, sans-serif;
  background-color: var(--bg);
  color: var(--body);
  line-height: 1.45;
}
img { max-width: 100%; display: block; border-radius: 8px; }

/* ================================
   TYPE
==================================*/
h1, h2, h3 { margin-top: 0; color: var(--ink); line-height: 1.2; font-weight: 600; }
p { margin: 0 0 1rem 0; color: var(--body); font-size: 1rem; }

/* ================================
   HERO
==================================*/
.hero-content {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 40px; flex-wrap: wrap;
}

/* Headshot + logo */
.hero-photo { position: relative; display: inline-block; margin-right: 220px; }
.hero-photo img {
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: 40% 35%;
  border: 4px solid #fff; box-shadow: 0 4px 16px rgba(0,0,0,.25);
}

/* Text column */
.hero-text { max-width: 700px; }
.brand { font-size: 1.5rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; text-align: left; }
.subline { font-size: 0.9rem; font-weight: 400; opacity: 0.8; margin-bottom: 1.5rem; color: #fff; }
.headline { font-size: 1.4rem; color: #fff; font-weight: 600; margin-bottom: 0.75rem; }
.pitch { color: var(--sky); font-size: 1rem; font-weight: 400; margin-bottom: 1.5rem; max-width: 46ch; }

/* CTA card */
.cta-block {
  background: #fff; color: var(--navy); border-radius: 12px; padding: 1rem 1.25rem 1.25rem;
  max-width: 360px; box-shadow: 0 12px 24px rgba(0,0,0,.25);
}
.cta-block {
  margin: 0 auto; /* centers horizontally */
  text-align: center;
}
.cta-line { font-size: 0.95rem; font-weight: 500; color: var(--navy); margin-bottom: 0.75rem; }
.cta-button {
  display: inline-block; background: var(--cta); color: #000; font-weight: 600; text-decoration: none;
  padding: 0.7rem 1rem; border-radius: 8px; font-size: 1rem; line-height: 1.2; border: 2px solid var(--cta);
}
.cta-button:hover { background: #00e77a; border-color: #00e77a; }
.disclaimer { font-size: 0.75rem; color: #444; margin-top: 0.75rem; }

/* Mobile */
@media (max-width: 900px) {
  .hero-content { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .hero-photo { margin-right: 0; }
  .hero-photo .lokation-badge {
    position: static; transform: none; margin-top: 12px; height: 44px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
  }
  .hero-text { text-align: center; }
}

/* ================================
   MAIN WRAPPER
==================================*/
main { max-width: 1200px; margin: 2rem auto 4rem; padding: 0 1rem; }
.section-title { font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }

/* ================================
   "HOW I SELL" STEPS
==================================*/
.system-section { margin-bottom: 3rem; }
.steps-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
.step-card {
  background: var(--card); border-radius: 12px; padding: 1rem 1rem 1.25rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.07); border: 1px solid rgba(0,0,0,.05);
}
.step-num { background: var(--navy); color: #fff; display: inline-block; min-width: 32px; text-align: center;
  font-size: 0.9rem; font-weight: 600; border-radius: 6px; padding: 0.4rem 0.5rem; margin-bottom: 0.75rem; }
.step-head { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink); }
.step-copy { font-size: 0.9rem; color: #2b2b2b; line-height: 1.4; }

/* ================================
   GAMMA SHOWCASE
==================================*/
.gamma-section { margin-bottom: 3rem; }
.gamma-header-row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.gamma-intro { font-size: 0.95rem; color: #2b2b2b; max-width: 60ch; margin-bottom: 1.5rem; }
.view-all-link { font-size: 0.9rem; font-weight: 500; text-decoration: none; color: var(--navy); }
.view-all-link:hover { text-decoration: underline; }

.gamma-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) { .gamma-grid { grid-template-columns: repeat(3, 1fr); } }
.gamma-card {
  background: var(--card); border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.05); overflow: hidden; display: flex; flex-direction: column;
}
.gamma-thumb { background: #dbe1e8; aspect-ratio: 16/9; width: 100%; overflow: hidden; }
.gamma-info { padding: 0.75rem 1rem 1rem; }
.gamma-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--ink); }
.gamma-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; line-height: 1.4; }
.gamma-link { font-size: 0.8rem; font-weight: 500; text-decoration: none; color: var(--navy); }
.gamma-link:hover { text-decoration: underline; }

/* ================================
   SOCIAL PROOF / CONTACT
==================================*/
.proof-section { margin-bottom: 3rem; }
.proof-grid { display: grid; gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 700px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
.proof-card { background: var(--card); border-radius: 12px; padding: 1rem 1rem 1.25rem; box-shadow: 0 8px 20px rgba(0,0,0,.07); border: 1px solid rgba(0,0,0,.05); }
.quote { font-size: 0.9rem; color: var(--ink); font-weight: 500; line-height: 1.4; margin-bottom: 0.75rem; }
.cite { font-size: 0.75rem; color: var(--muted); }

/* Contact block */
.contact-block {
  background: var(--navy); color: #fff; border-radius: 12px; padding: 1rem 1.25rem 1.5rem;
  max-width: 600px; box-shadow: 0 12px 24px rgba(0,0,0,.4);
}
.contact-head { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.contact-copy { font-size: 0.9rem; color: var(--sky); line-height: 1.4; margin-bottom: 1rem; max-width: 50ch; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin-bottom: 0.75rem; }
.alt-call { font-size: 0.9rem; font-weight: 500; color: #fff; text-decoration: none; }
.alt-call:hover { text-decoration: underline; }
.broker-line { font-size: 0.7rem; color: #8fa5c7; margin: 0; }

/* ================================
   FOOTER
==================================*/
.site-footer { text-align: center; font-size: 0.75rem; color: #555; padding: 2rem 1rem 4rem; }
.broker-logos { display: flex; justify-content: center; align-items: center; gap: 0.75rem; padding: 1rem 0 0.5rem; }
.broker-logos img { height: 36px; width: auto; opacity: 0.9; transition: opacity 0.2s ease; }
.broker-logos img:hover { opacity: 1; }
.hero {
  background-color: var(--navy);
  color: #fff;
  padding: 2.5rem 1rem 2rem;
}
.hero-inner {
  position: relative;

  max-width: 1200px;
  margin: 0 auto;
}

/* Position logo perfectly on right side */
/* FINAL LOKATION BADGE — clean, responsive, no !important */
.lokation-badge {
  position: absolute;
  top: 50%;
  right: -120px;                 /* tuned position you liked */
  transform: translateY(-50%);
  height: clamp(180px, 14vh, 200px);  /* flexes between 150–200px */
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
  z-index: 3;
  transition: transform 0.2s ease-out, opacity 0.3s ease-in;
}

.lokation-badge:hover {
  transform: translateY(-50%) scale(1.05);
  opacity: 0.95;
}

@media (max-width: 900px) {
  .lokation-badge {
    position: static;
    display: block;
    margin: 12px auto 0;
    height: 80px;
    transform: none;
  }
}
/* --- Fix mobile centering for actual hero text classes --- */
@media (max-width: 680px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .hero-photo { margin-right: 0; }          /* kill desktop offset */
  .hero-photo img { display: block; margin: 0 auto; }

  /* Center the text column itself */
  .hero-text { max-width: 90%; margin-inline: auto; text-align: center; }

  /* These are the lines you see: name, subline, headline, pitch */
  .brand,
  .subline,
  .headline,
  .pitch {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}