/* =========================================================
   INTENSIVE SALES — dark / yellow landing page
   ========================================================= */

:root{
  --bg:        #0a0a0b;
  --bg-soft:   #121214;
  --card:      #161618;
  --border:    #2a2a2d;
  --yellow:    #F5B301;
  --yellow-hi: #FFC93C;
  --white:     #f4f4f5;
  --grey:      #a8a8ad;
  --grey-dim:  #6b6b70;
  --radius:    14px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  position:relative;
  font-family:var(--font);
  background:var(--bg);
  color:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

body::before,
body::after{
  content:"";
  position:fixed;
  inset:auto;
  pointer-events:none;
  z-index:-1;
  filter:blur(70px);
  opacity:.55;
}

body::before{
  top:-10vh;
  right:-8vw;
  width:36vw;
  height:36vw;
  background:radial-gradient(circle, rgba(245,179,1,.18), rgba(245,179,1,0) 70%);
}

body::after{
  left:-10vw;
  bottom:18vh;
  width:30vw;
  height:30vw;
  background:radial-gradient(circle, rgba(255,255,255,.06), rgba(255,255,255,0) 72%);
}

img, svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px;
  background:rgba(10,10,11,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid transparent;
  transition:border-color .3s;
}
.site-header.scrolled{ border-bottom-color:var(--border); }

.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ width:38px; height:38px; }
.logo-text{
  font-weight:800; font-size:.95rem; line-height:1.1; letter-spacing:.06em;
}
.logo-text em{ font-style:normal; color:var(--yellow); }

.hamburger{
  width:42px; height:42px; border:0; background:none; cursor:pointer;
  display:flex; flex-direction:column; justify-content:center; align-items:flex-end; gap:5px;
}
.hamburger span{
  display:block; height:2.5px; border-radius:2px; background:var(--white);
  width:26px; transition:transform .3s, opacity .3s, width .3s;
}
.hamburger span:nth-child(2){ width:20px; }
.hamburger.open span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); width:26px; }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); width:26px; }

/* ---------- Header right cluster (lang switch + hamburger) ---------- */
.header-right{
  display:flex; align-items:center; gap:14px;
}

.lang-switch{
  display:flex; align-items:center; gap:2px;
  border:1px solid var(--border);
  border-radius:999px;
  padding:3px;
}
.lang-option{
  padding:5px 11px;
  border-radius:999px;
  font-size:.76rem; font-weight:700; letter-spacing:.04em;
  color:var(--grey);
  transition:background .2s, color .2s;
}
.lang-option:hover{ color:var(--white); }
.lang-option.active{
  background:var(--yellow);
  color:#0a0a0b;
}

.mobile-lang-switch{
  display:flex; justify-content:center; gap:8px;
  margin-top:16px;
}
.mobile-lang-switch .lang-option{
  padding:8px 18px;
  border:1px solid var(--border);
  font-size:.85rem;
}

/* ---------- Mobile menu ---------- */
.mobile-menu{
  display:none;
  position:fixed; top:74px; left:0; right:0; z-index:49;
  background:var(--bg-soft);
  border-bottom:1px solid var(--border);
  padding:12px 22px 20px;
}
.mobile-menu a{
  display:block; padding:14px 6px;
  font-weight:600; font-size:1.05rem;
  border-bottom:1px solid var(--border);
  transition:color .2s, padding-left .2s;
}
.mobile-menu a:last-child{ border-bottom:0; }
.mobile-menu a:hover{ color:var(--yellow); padding-left:12px; }

/* ---------- Hero ---------- */
.hero{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
  max-width:1120px;
  margin:0 auto;
  padding:56px 22px 40px;
}

.badge{
  display:inline-flex; align-items:center; gap:9px;
  padding:9px 18px;
  border:1px solid var(--border);
  border-radius:999px;
  font-size:.72rem; font-weight:600; letter-spacing:.18em;
  color:var(--grey);
}
.badge .dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 10px var(--yellow);
  animation:pulse 2s ease-in-out infinite;
}
@keyframes pulse{ 50%{ opacity:.4; } }

.hero h1{
  margin:26px 0 22px;
  font-size:clamp(2.3rem, 5.4vw, 3.6rem);
  font-weight:800;
  line-height:1.12;
  letter-spacing:-.02em;
}
.hero h1 span{ display:block; }
.line-yellow{ color:var(--yellow); }

.hero-lead{
  color:var(--grey);
  font-size:1.06rem;
  max-width:42ch;
  margin-bottom:32px;
}

.hero-actions{ display:flex; flex-direction:column; gap:14px; max-width:380px; }

.btn{
  display:inline-flex; align-items:center; justify-content:space-between; gap:12px;
  padding:16px 24px;
  border-radius:12px;
  font-weight:700; font-size:1rem;
  transition:transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn .chev{ font-size:1.3rem; line-height:1; }
.btn-primary{
  background:var(--yellow); color:#141414;
}
.btn-primary:hover{
  background:var(--yellow-hi);
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(245,179,1,.28);
}
.btn-ghost{
  border:1px solid var(--border);
  color:var(--white);
  background:transparent;
}
.btn-ghost:hover{ border-color:var(--yellow); color:var(--yellow); transform:translateY(-2px); }

/* ---------- Mascot ---------- */
.hero-mascot{ position:relative; text-align:center; }
.mascot{
  width:min(320px, 82%);
  margin:38px auto 0;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.5));
  animation:float 4.5s ease-in-out infinite;
}
@keyframes float{ 50%{ transform:translateY(-10px); } }

.speech-bubble{
  position:absolute; bottom:102%; left:20%;
  max-width:230px;
  background:#1b1b1e;
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px 18px;
  text-align:left;
  font-size:.95rem;
  box-shadow:0 12px 30px rgba(0,0,0,.45);
  z-index:2;
}
.speech-bubble strong{ display:block; margin-bottom:2px; }
.speech-bubble::after{
  content:""; position:absolute; bottom:-9px; left:34px;
  width:16px; height:16px;
  background:#1b1b1e;
  border-right:1px solid var(--border);
  border-bottom:1px solid var(--border);
  transform:rotate(45deg);
}
.typing{ color:var(--grey); }
.typing::after{
  content:"|"; color:var(--yellow);
  animation:blink 1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity:0; } }

.hero-mascot .mascot{
  width:min(320px, 82%);
  margin:38px auto 0;
  filter:drop-shadow(0 24px 40px rgba(0,0,0,.5));
  animation:float 4.5s ease-in-out infinite;
}

/* ---------- Trusted by ---------- */
.trusted{
  max-width:1120px; margin:0 auto;
  padding:26px 22px 54px;
  border-bottom:1px solid var(--border);
}
.trusted-label{
  font-size:.7rem; font-weight:600; letter-spacing:.22em;
  color:var(--grey-dim);
  margin-bottom:22px;
}
.trusted-logos{
  display:flex; flex-wrap:wrap; gap:20px 36px;
  align-items:center;
}
.t-logo{
  font-weight:700; font-size:1.02rem;
  color:var(--grey-dim);
  transition:color .25s;
  cursor:default;
}
.t-logo:hover{ color:var(--grey); }

/* ---------- What we do ---------- */
.what-we-do{
  max-width:1120px; margin:0 auto;
  padding:64px 22px 30px;
}
.what-we-do h2, .strip h2{
  font-size:clamp(1.7rem, 4vw, 2.3rem);
  font-weight:800;
  letter-spacing:-.01em;
}
.section-kicker{
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.24em;
  color:var(--yellow);
  margin-bottom:10px;
}
.section-lead{
  color:var(--grey);
  margin:12px 0 34px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
.card{
  position:relative;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px 58px;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover{
  transform:translateY(-5px);
  border-color:rgba(245,179,1,.5);
  box-shadow:0 16px 40px rgba(0,0,0,.4);
}
.card-icon{
  width:44px; height:44px;
  color:var(--yellow);
  margin-bottom:18px;
}
.card h3{
  font-size:1.12rem; font-weight:700;
  line-height:1.35;
  margin-bottom:10px;
}
.card p{ color:var(--grey); font-size:.95rem; }
.card-link{
  position:absolute; left:22px; bottom:18px;
  color:var(--yellow); font-size:1.35rem;
  transition:transform .2s;
}
.card:hover .card-link{ transform:translateX(6px); }

/* ---------- Insight / Process ---------- */
.insight,
.process{
  position:relative;
}

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

.highlight,
.testimonial{
  background:linear-gradient(180deg, rgba(22,22,24,.98), rgba(18,18,20,.96));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}

.highlight{
  padding:24px 22px 22px;
  transition:transform .25s, border-color .25s, box-shadow .25s;
}
.highlight:hover,
.testimonial:hover{
  transform:translateY(-4px);
  border-color:rgba(245,179,1,.45);
  box-shadow:0 16px 38px rgba(0,0,0,.34);
}

.highlight-index{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(245,179,1,.35);
  color:var(--yellow);
  font-size:.86rem;
  font-weight:800;
  margin-bottom:16px;
  background:rgba(245,179,1,.06);
}

.highlight h3{
  font-size:1.08rem;
  line-height:1.35;
  margin-bottom:10px;
}

.highlight p,
.testimonial blockquote,
.testimonial-meta span{
  color:var(--grey);
}

/* ---------- Journey path (10-step serpentine route) ---------- */
.journey-path{
  display:flex;
  flex-direction:column;
  gap:0;
}
.journey-row{
  position:relative;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
}

/* connector between cards in the same row */
.journey-row::before,
.journey-row::after{
  content:"";
  position:absolute;
  top:50%;
  width:34px; height:34px;
  transform:translate(-50%, -50%);
  background:var(--bg);
  border:1px solid rgba(245,179,1,.4);
  border-radius:50%;
  z-index:2;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F5B301' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px;
}
.journey-row::before{ left:33.333%; }
.journey-row::after{ left:66.666%; }
.journey-row.single::before,
.journey-row.single::after{ display:none; }

.journey-card{
  position:relative;
  display:block;
  background:linear-gradient(180deg, rgba(22,22,24,.98), rgba(18,18,20,.96));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 8px 22px rgba(0,0,0,.2);
  padding:20px 18px 18px;
  margin:24px 14px;
  transition:transform .25s, border-color .25s, box-shadow .25s;
  cursor:pointer;
}
.journey-row > .journey-card:hover{
  transform:translateY(-4px);
  border-color:rgba(245,179,1,.45);
  box-shadow:0 14px 32px rgba(0,0,0,.3);
}
.journey-node{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px; height:34px;
  border-radius:50%;
  background:rgba(245,179,1,.12);
  color:var(--yellow);
  font-weight:800;
  font-size:.86rem;
  margin-bottom:12px;
}
.journey-card h3{
  font-size:.98rem;
  line-height:1.3;
  margin-bottom:6px;
}
.journey-card p{
  color:var(--grey);
  font-size:.86rem;
  line-height:1.5;
}

.journey-card-final{
  grid-column:2;
  border-color:rgba(245,179,1,.5);
  box-shadow:0 8px 26px rgba(245,179,1,.12);
}

/* connector dropping from the end of one row down and across to the start of the next */
.journey-drop{
  position:relative;
  height:22px;
}
.journey-drop::before{
  content:"";
  position:absolute;
  top:0; bottom:50%;
  left:83.333%;
  width:2px;
  background:rgba(245,179,1,.5);
}
.journey-drop::after{
  content:"";
  position:absolute;
  top:50%; bottom:0;
  left:16.666%;
  width:2px;
  background:rgba(245,179,1,.5);
}
.journey-drop-bend{
  position:absolute;
  top:50%; left:16.666%;
  width:66.666%;
  height:2px;
  background:rgba(245,179,1,.5);
  transform:translateY(-1px);
}
.journey-drop-dot{
  position:absolute;
  bottom:0; left:16.666%;
  width:10px; height:10px;
  border-radius:50%;
  background:var(--yellow);
  transform:translate(-4px, 4px);
}

/* the last drop lands on a centered single card (grid-column:2) instead of the row's start */
.journey-drop.to-center::after,
.journey-drop.to-center .journey-drop-bend,
.journey-drop.to-center .journey-drop-dot{ left:50%; }
.journey-drop.to-center .journey-drop-bend{ width:33.333%; }

@media (max-width: 860px){
  .journey-row{ grid-template-columns:repeat(2, 1fr); }
  .journey-row::after{ display:none; }
  .journey-row::before{ left:50%; }
  .journey-drop::before{ left:75%; }
  .journey-drop::after,
  .journey-drop-bend,
  .journey-drop-dot{ left:25%; }
  .journey-drop-bend{ width:50%; }
  .journey-card-final{ grid-column:1 / -1; max-width:340px; margin-left:auto; margin-right:auto; }
}

@media (max-width: 620px){
  .journey-row{
    grid-template-columns:1fr;
  }
  .journey-row::before,
  .journey-row::after{ display:none; }
  .journey-card{ margin:0 0 14px; padding:16px 16px 14px; }
  .journey-card-final{ max-width:none; }
  .journey-drop{ display:none; }
}

/* ---------- Journey step page (single step detail) ---------- */
.journey-breadcrumb{
  display:flex; flex-wrap:wrap; align-items:center; gap:8px;
  font-size:.86rem;
  color:var(--grey-dim);
  margin-bottom:18px;
}
.journey-breadcrumb a:hover{ color:var(--yellow); }

.journey-hero{
  padding-bottom:34px;
}
.journey-hero h1{
  font-size:clamp(1.7rem, 4vw, 2.3rem);
  font-weight:800;
  letter-spacing:-.01em;
  margin-top:8px;
}
.journey-question{
  color:var(--yellow) !important;
  font-weight:700;
  margin-top:6px;
}

.journey-body{
  padding-top:0;
}
.journey-copy{
  max-width:70ch;
  margin-bottom:34px;
}
.journey-copy p{
  color:var(--grey);
  font-size:1.02rem;
  line-height:1.8;
  margin-bottom:16px;
}
.journey-copy p:last-child{ margin-bottom:0; }

.journey-progress{
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:34px;
  flex-wrap:wrap;
}
.progress-dot{
  width:8px; height:8px;
  border-radius:50%;
  background:var(--border);
  transition:background .2s, width .2s;
}
.progress-dot.done{ background:rgba(245,179,1,.4); }
.progress-dot.active{
  background:var(--yellow);
  width:22px;
  border-radius:4px;
}

.journey-step-nav{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:30px;
}
.journey-step-nav-link{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  transition:border-color .2s, transform .2s;
  max-width:48%;
}
.journey-step-nav-link:hover{
  border-color:rgba(245,179,1,.5);
  transform:translateY(-2px);
}
.journey-step-nav-link.next{ text-align:right; align-items:flex-end; margin-left:auto; }
.journey-step-nav-link .label{
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.1em;
  color:var(--grey-dim);
}
.journey-step-nav-link .title{
  font-size:.95rem;
  font-weight:700;
  color:var(--white);
}

.journey-step-cta{ margin-top:6px; }

@media (max-width: 620px){
  .journey-step-nav{ flex-direction:column; }
  .journey-step-nav-link,
  .journey-step-nav-link.next{ max-width:none; align-items:flex-start; text-align:left; margin-left:0; }
}

.testimonial{
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:18px;
  margin-top:18px;
  padding:24px 22px;
}

.testimonial blockquote{
  font-size:1.02rem;
  line-height:1.7;
}

.testimonial-meta{
  align-self:end;
  text-align:right;
}

.testimonial-meta strong{
  display:block;
  font-size:1rem;
  margin-bottom:4px;
}

/* ---------- Strips (case studies / contact) ---------- */
.strip{
  max-width:1120px; margin:0 auto;
  padding:64px 22px;
  border-top:1px solid var(--border);
}
.stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:18px; margin-top:10px;
}
.stat{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px;
}
.stat strong{
  font-size:2.4rem; font-weight:800; color:var(--yellow);
  display:block; line-height:1.1;
}
.stat span{ color:var(--grey); font-size:.92rem; }

.contact .btn{ margin-top:6px; }

/* ---------- Footer ---------- */
.site-footer{
  max-width:1120px;
  margin:0 auto;
  padding:0 22px 28px;
}

.footer-panel{
  display:grid;
  grid-template-columns:1.3fr .7fr .7fr .9fr;
  gap:24px;
  background:linear-gradient(180deg, rgba(18,18,20,.98), rgba(14,14,16,.98));
  border:1px solid var(--border);
  border-radius:24px;
  padding:28px;
  box-shadow:0 18px 48px rgba(0,0,0,.34);
}

.footer-brand p{
  color:var(--grey);
  max-width:34ch;
  margin-top:16px;
  font-size:.95rem;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.footer-logo-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(245,179,1,.12);
  border:1px solid rgba(245,179,1,.28);
  color:var(--yellow);
  font-weight:800;
}

.footer-logo strong,
.footer-links h3,
.footer-cta .footer-label{
  display:block;
}

.footer-logo strong{
  font-size:1rem;
  line-height:1.1;
  letter-spacing:.08em;
}

.footer-logo em{
  display:block;
  font-style:normal;
  color:var(--grey-dim);
  font-size:.78rem;
  letter-spacing:.18em;
  margin-top:2px;
  text-transform:uppercase;
}

.footer-links h3,
.footer-label{
  font-size:.75rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--yellow);
  margin-bottom:16px;
}

.footer-links a{
  display:block;
  color:var(--grey);
  padding:7px 0;
  transition:color .2s, transform .2s;
}

.footer-links a:hover{
  color:var(--white);
  transform:translateX(4px);
}

.footer-cta{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}

.footer-cta .btn{
  width:100%;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:var(--grey-dim);
  font-size:.85rem;
  padding:18px 6px 0;
}

/* ---------- Bottom nav ---------- */
.bottom-nav{
  display:none;
  position:fixed; left:50%; bottom:14px; transform:translateX(-50%);
  z-index:60;
  gap:4px;
  justify-content:center;
  background:rgba(22,22,24,.92);
  backdrop-filter:blur(14px);
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px;
  box-shadow:0 14px 40px rgba(0,0,0,.55);
  max-width:calc(100% - 24px);
}
.bn-item{
  display:flex; align-items:center; justify-content:center; gap:8px;
  flex-shrink:0;
  padding:11px 16px;
  border-radius:999px;
  color:var(--grey);
  font-size:.86rem; font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  transition:background .25s, color .25s, flex .25s;
}
.bn-item svg{ width:19px; height:19px; flex:none; }
.bn-item:hover{ color:var(--white); }
.bn-item.active{
  background:#232326;
  color:var(--yellow);
}

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity:0; transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{ opacity:1; transform:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal{ opacity:1; transform:none; transition:none; }
  .mascot, .badge .dot{ animation:none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .hero{ grid-template-columns:1fr; padding-top:36px; }
  .hero-mascot{ order:-1; margin-bottom:8px; padding-top:18px; }
  .speech-bubble{
    top:0;
    bottom:auto;
    left:50%;
    right:auto;
    transform:translateX(-50%);
    max-width:min(320px, 84vw);
  }
  .speech-bubble::after{ left:50%; transform:translateX(-50%) rotate(45deg); }
  .cards, .stats, .highlights, .testimonial{ grid-template-columns:1fr; }
  .bottom-nav{ gap:0; padding:6px; width:calc(100% - 24px); }
  .bn-item{ flex:1; gap:0; padding:10px 4px; }
  .bn-item span{ display:none; }
  .bn-item.active{ flex:1.6; gap:6px; }
  .bn-item.active span{ display:inline; }
  .testimonial-meta{ text-align:left; }
  .footer-panel{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px){
  .footer-panel{ grid-template-columns:1fr; padding:22px; border-radius:20px; }
  .footer-bottom{ flex-direction:column; }
}
