/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html, body {
  width: 100%;
  min-height: 100%;
  background: #000;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Arial, Helvetica, sans-serif;
}
/* BACKGROUND GIF */
.bg {
  position: fixed;
  inset: 0;
  background: url("./assets/bg.gif") center center / cover no-repeat;
  opacity: 0.35;
  filter: brightness(1.4) contrast(1.4) saturate(1.2);
  z-index: 0;
  pointer-events: none;
}

/* HERO */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #7CFF6B;
}

/* TITLE */
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.4em;
  text-shadow: 0 0 25px rgba(124, 255, 107, 0.5);
}

/* TAGLINE */
.hero p {
  margin-top: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}
.cta {
  margin-top: clamp(50px, 6vh, 90px);
  padding: 14px 38px;
  border: 1px solid rgba(124, 255, 107, 0.6);
  color: #7CFF6B;
  text-decoration: none;
  letter-spacing: 0.2em;
  font-size: 12px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(124, 255, 107, 0.25);
}

.cta:hover {
  background: rgba(124, 255, 107, 0.1);
  box-shadow: 0 0 30px rgba(124, 255, 107, 0.6);
  transform: translateY(-2px);
}
/* ACCESS SECTION */
.access {
  min-height: 100vh;
  padding: 120px 10vw;
  background: #000;
  color: #7CFF6B;
  text-align: center;
}

.access h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(124, 255, 107, 0.4);
}

.access p {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
  letter-spacing: 0.12em;
}
/* ACCESS MENU */
.access-header {
  margin-bottom: 50px;
}

.menu {
  width: min(900px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* Each dropdown block */
.menu-item {
  border: 1px solid rgba(124, 255, 107, 0.25);
  border-radius: 14px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

/* Clickable title row */
.menu-item > summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #7CFF6B;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Remove default arrow */
.menu-item > summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow */
.menu-item > summary::after {
  content: "▾";
  opacity: 0.8;
  transition: transform 0.2s ease;
}

.menu-item[open] > summary::after {
  transform: rotate(180deg);
}

/* Submenu links */
.submenu {
  padding: 10px 14px 16px;
  display: grid;
  gap: 10px;
}

.submenu a {
  display: block;
  padding: 14px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #7CFF6B;
  border: 1px solid rgba(124, 255, 107, 0.18);
  background: rgba(0,0,0,0.35);
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.submenu a:hover {
  background: rgba(124, 255, 107, 0.10);
  border-color: rgba(124, 255, 107, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 255, 107, 0.25);
}
/* =========================
   MENU – CLEAN PANEL STYLE
   ========================= */

.menu-item {
  border: 1px solid rgba(124, 255, 107, 0.18);
  border-radius: 16px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.menu-item > summary {
  padding: 16px 18px;
  font-size: 13px;
  letter-spacing: 0.32em;
  opacity: 0.95;
}

.submenu a {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(124, 255, 107, 0.12);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.submenu a:hover {
  background: rgba(124, 255, 107, 0.08);
  border-color: rgba(124, 255, 107, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(124, 255, 107, 0.18);
}
/* =========================
   OFFER PAGE – 1-1 MENTORSHIP
   ========================= */

.offer {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 120px 10vw;
  color: #7CFF6B;
  text-align: center;
}

.offer h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.25em;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(124,255,107,0.45);
}

.subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.85;
  letter-spacing: 0.12em;
}

.price {
  font-size: 2rem;
  letter-spacing: 0.3em;
  margin-bottom: 40px;
  text-shadow: 0 0 25px rgba(124,255,107,0.35);
}

.points {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 50px;
  display: grid;
  gap: 14px;
}

.points li {
  padding: 14px 18px;
  border: 1px solid rgba(124,255,107,0.25);
  border-radius: 14px;
  background: rgba(0,0,0,0.4);
  letter-spacing: 0.08em;
}

.note {
  margin-top: 24px;
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.12em;
}

.back {
  display: inline-block;
  margin-top: 60px;
  text-decoration: none;
  color: #7CFF6B;
  opacity: 0.6;
  letter-spacing: 0.15em;
  font-size: 12px;
}
/* ============================= */
/* MENTORSHIP DETAILS SECTION    */
/* ============================= */

.details {
  max-width: 900px;
  margin: 120px auto 0;
  padding: 0 6vw;
  color: #7CFF6B;
  text-align: left;
}

.details p {
  margin-bottom: 1.5rem;
  opacity: 0.85;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.details .highlight {
  font-size: 1.1rem;
  opacity: 1;
  text-align: center;
  margin: 2.5rem 0;
  letter-spacing: 0.08em;
}

.details h2 {
  margin: 3.5rem 0 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 18px rgba(124,255,107,0.35);
}

.details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details li {
  margin-bottom: 1.5rem;
  opacity: 0.85;
  line-height: 1.6;
}

.details li strong {
  display: block;
  margin-bottom: 0.3rem;
  opacity: 1;
}

.details hr {
  border: none;
  height: 1px;
  margin: 4rem 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(124,255,107,0.35),
    transparent
  );
}
/* =========================
   APPLY SECTION (FORM)
   ========================= */

.apply{
  min-height: 100vh;
  padding: 120px 10vw;
  background: rgba(0,0,0,0.85);
  color: #7CFF6B;
  display: grid;
  place-items: center;
  text-align: center;
}

.apply h2{
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.25em;
  text-shadow: 0 0 20px rgba(124, 255, 107, 0.4);
  margin-bottom: 16px;
}

.apply-note{
  max-width: 700px;
  opacity: 0.85;
  letter-spacing: 0.12em;
  margin: 0 auto 28px;
}

.apply-form{
  width: min(820px, 92vw);
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.apply-form input,
.apply-form select,
.apply-form textarea{
  width: 100%;
  padding: 14px 16px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(124, 255, 107, 0.35);
  color: #7CFF6B;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  letter-spacing: 0.08em;
}

.apply-form textarea{
  resize: none;
  min-height: 140px;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder{
  color: rgba(124, 255, 107, 0.65);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus{
  border-color: rgba(124, 255, 107, 0.7);
  box-shadow: 0 0 22px rgba(124, 255, 107, 0.18);
}

.apply-form .cta{
  width: 100%;
  cursor: pointer;
  background: rgba(0,0,0,0.25);
}
/* DETAILS / LONG-FORM CONTENT */
.details {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.details p {
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

/* Lists inside details */
.details ul {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
}

.details li {
  margin-bottom: 0.8rem;
}

/* Section headers */
.details h2 {
  text-align: center;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
/* ===== HERO (restore clean stack) ===== */
.offer {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 10vw;
  color: #7CFF6B;
}

.points {
  list-style: none;
  padding: 0;
  margin: 2.2rem auto 0;
  max-width: 560px;
  display: grid;
  gap: 14px;
}

.points li {
  border: 1px solid rgba(124, 255, 107, 0.35);
  border-radius: 12px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 18px rgba(124, 255, 107, 0.12);
  text-align: center;
}

/* ===== DETAILS (center header, readable content) ===== */
.details {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 10vw 120px;
  color: #7CFF6B;
  text-align: center;
}

.details p {
  max-width: 760px;
  margin: 0.9rem auto;
  opacity: 0.9;
  line-height: 1.65;
}

.details h2, .details h3 {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin: 2.4rem 0 1.2rem;
}

/* Keep lists readable: centered container, left text */
.details ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 720px;
  text-align: left;
}

.details li {
  border: 1px solid rgba(124, 255, 107, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 12px 0;
  background: rgba(0,0,0,0.35);

  text-align: center;
}
/* Body text = Exo 2 */
body {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 40px;
}

/* Headlines = Orbitron */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

/* Numbers / stats = Orbitron */
.stat,
.metric,
.number,
.price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 16px;
  font-size: 2rem;
}

/* =========================
   MOBILE OPTIMIZATION
   ========================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* Main container */
  .container,
  .content,
  section {
    width: 100%;
    max-width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
  }

  /* Headings */
  h1 {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 2px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.25;
    text-align: center;
  }

  h3 {
    font-size: 20px;
    text-align: center;
  }

  /* Paragraphs */
  p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
  }

  /* Buttons */
  button,
  .btn,
  a.button {
    width: 100%;
    max-width: 320px;
    margin: 16px auto;
    display: block;
    padding: 14px 0;
    font-size: 14px;
  }

  /* Cards / steps / boxes */
  .card,
  .step,
  .box {
    width: 100%;
    margin-bottom: 16px;
  }

  /* Forms */
  form {
    width: 100%;
  }

  input,
  textarea,
  select {
    width: 100%;
    font-size: 14px;
  }

  /* Navigation / menu */
  nav,
  .menu {
    width: 100%;
  }

}
/* =========================
   MOBILE FIX — APPLICATION FORM
   ========================= */
@media (max-width: 768px) {

  /* Give the application section breathing room */
  .apply, #apply {
    padding: 28px 16px !important;
  }

  /* Keep the form panel readable */
  .apply .panel, 
  #apply .panel {
    width: 100% !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 22px 16px !important;
    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

  /* Title/subtitle scale */
  .apply h2, 
  #apply h2 {
    font-size: 28px !important;
    line-height: 1.15 !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .apply .subtitle, 
  #apply .subtitle {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-bottom: 18px !important;
  }

  /* Form layout: stack cleanly */
  .apply-form,
  #apply .apply-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  /* Inputs/selects/textarea: full width, tappable */
  .apply-form input,
  .apply-form select,
  .apply-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;

    padding: 14px 14px !important;
    font-size: 16px !important; /* prevents iOS zoom + improves readability */
    line-height: 1.3 !important;

    border-radius: 12px !important;
    border-width: 1px !important;

    background: rgba(0,0,0,0.55) !important; /* readable on matrix bg */
    backdrop-filter: blur(6px) !important;
  }

  /* Textarea height */
  .apply-form textarea {
    min-height: 110px !important;
    resize: vertical !important;
  }

  /* Make placeholders readable */
  .apply-form input::placeholder,
  .apply-form textarea::placeholder {
    opacity: 0.85 !important;
  }

  /* Button: full width on mobile */
  .apply-form button,
  .apply-form .cta {
    width: 100% !important;
    max-width: 320px !important;
    margin: 10px auto 0 !important;
    display: block !important;
    padding: 14px 0 !important;
    font-size: 14px !important;
  }

  /* Note / back link spacing */
  .apply .note,
  #apply .note {
    text-align: center !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-top: 14px !important;
  }

  .apply .back,
  #apply .back {
    display: block !important;
    text-align: center !important;
    margin-top: 14px !important;
  }
}
/* =========================
   MOBILE FIX — DROPSHIPPING HERO (TITLE + STATS)
   ========================= */
@media (max-width: 768px) {

  /* Prevent horizontal overflow site-wide */
  html, body {
    overflow-x: hidden !important;
  }

  /* Make sure the hero area can’t push width */
  .hero, .hero-inner, header, .container, section {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Main title (DROPSHIPPING) */
  h1, .title, .hero-title {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;

    font-size: clamp(34px, 9vw, 56px) !important;
    line-height: 1.05 !important;

    letter-spacing: 0.18em !important; /* reduce from desktop */
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: anywhere !important;

    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  /* Subtitle line (1-1 MENTORSHIP etc) */
  h2, .subtitle, .hero-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;

    font-size: clamp(18px, 4.6vw, 26px) !important;
    line-height: 1.2 !important;

    letter-spacing: 0.12em !important;
    white-space: normal !important;

    padding: 0 14px !important;
    box-sizing: border-box !important;
  }

  /* Big stat lines (£1000, 7-14 Days, etc) */
  .stat, .stats, .price, .big, .hero-big {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;

    font-size: clamp(22px, 7.2vw, 40px) !important;
    line-height: 1.08 !important;

    letter-spacing: 0.08em !important;
    white-space: normal !important;

    padding: 0 16px !important;
    box-sizing: border-box !important;
  }

  /* Button area */
  .cta, .hero .cta, .buttons, .btn {
    max-width: 320px !important;
    width: 100% !important;
    margin: 16px auto 0 !important;
    display: block !important;
  }
}
/* =========================================
   MOBILE FIX: stop titles wrapping mid-word
========================================= */

/* Prevent weird word breaks */
h1, h2, h3 {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* Any page hero title (covers most setups) */
h1,
.hero h1,
.hero-title,
.page-title,
.title {
  white-space: nowrap;      /* no wrap */
  text-wrap: nowrap;        /* modern */
  max-width: 92vw;          /* keep inside screen */
  margin-left: auto;
  margin-right: auto;
}

/* Mobile scaling */
@media (max-width: 600px) {
  h1,
  .hero h1,
  .hero-title,
  .page-title,
  .title {
    font-size: clamp(28px, 10vw, 56px);
    letter-spacing: clamp(0.02em, 1.2vw, 0.08em);
    line-height: 1.05;
  }
}

/* Tiny phones */
@media (max-width: 380px) {
  h1,
  .hero h1,
  .hero-title,
  .page-title,
  .title {
    font-size: clamp(26px, 11vw, 48px);
    letter-spacing: 0.03em;
  }
}
/* ===== Trading PDF Page (same system as Dropshipping page) ===== */
.matrix-page {
  margin: 0;
  font-family: "Exo 2", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #d7ffd7;
  background: #020402;
  overflow-x: hidden;
}

.bg-video{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: contrast(1.05) brightness(0.6);
}

.bg-overlay{
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.15), rgba(0,0,0,0.72));
}

.page-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 18px 90px;
}

.hero-card, .details-card{
  border: 1px solid rgba(74, 255, 74, 0.35);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 26px 20px;
  box-shadow: 0 0 0 1px rgba(0,255,0,0.08) inset;
}

.details-card{
  margin-top: 18px;
  padding-top: 22px;
}

.kicker{
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.22em;
  font-size: 12px;
  opacity: 0.9;
}

.title{
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  margin: 10px 0 6px;
  font-size: clamp(34px, 6vw, 60px);
}

.subtitle{
  margin: 0 0 18px;
  opacity: 0.9;
}

.price-stack{
  margin: 14px 0 18px;
}

.price{
  font-family: "Orbitron", sans-serif;
  font-size: 44px;
  letter-spacing: 0.06em;
}

.price-sub{
  opacity: 0.85;
  margin-top: 4px;
}

.pill-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin: 16px 0 18px;
}

.pill{
  border: 1px solid rgba(74, 255, 74, 0.25);
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  font-size: 14px;
}

.cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  font-size: 12px;
  min-width: 190px;
  border: 1px solid rgba(74,255,74,0.35);
}

.btn.ghost{
  background: rgba(0,0,0,0.22);
  color: #d7ffd7;
}

.btn.solid{
  background: rgba(74,255,74,0.12);
  color: #d7ffd7;
}

.btn:hover{
  transform: translateY(-1px);
}

.micro-note{
  margin-top: 12px;
  opacity: 0.85;
  font-size: 13px;
}

.back-link{
  display: inline-block;
  margin-top: 18px;
  color: #d7ffd7;
  opacity: 0.9;
  text-decoration: none;
  border-bottom: 1px solid rgba(74,255,74,0.25);
  padding-bottom: 2px;
}

.h2{
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.list{
  margin: 0 0 6px;
  padding-left: 18px;
  line-height: 1.6;
}

@media (max-width: 640px){
  .pill-grid{ grid-template-columns: 1fr; }
  .btn{ width: 100%; }
}
/* ==== FIX: buttons row + visited link colour ==== */
.btns{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Make links NEVER turn blue/purple */
.btn, .btn:link, .btn:visited,
.cta, .cta:link, .cta:visited{
  color: #b6ff9c;          /* same green vibe */
  text-decoration:none;
}

/* Button base */
.btn, .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(120,255,160,0.35);
  background: rgba(0,0,0,0.35);
  font-family: "Orbitron", system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height:1;
  min-width: 220px;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(120,255,160,0.12) inset;
}

/* Filled / primary */
.btn{
  background: rgba(0,0,0,0.55);
  border:1px solid rgba(120,255,160,0.55);
}

/* Ghost / secondary */
.btn.ghost, .cta.ghost{
  background: rgba(0,0,0,0.25);
}

/* Hover */
.btn:hover, .cta:hover{
  border-color: rgba(120,255,160,0.85);
  box-shadow: 0 0 24px rgba(120,255,160,0.15);
}

/* Mobile: stack nicely */
@media (max-width: 520px){
  .btn, .cta{
    width: 100%;
    min-width: 0;
  }
}
/* FIX: stop TRADING breaking into TRADIN / G */
.offer h1,
.hero h1,
h1{
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
  text-align: center;
}

/* On small screens: reduce tracking + size so it fits */
@media (max-width: 420px){
  .offer h1,
  .hero h1,
  h1{
    font-size: 40px;        /* tweak if you want */
    letter-spacing: 0.10em; /* reduce spacing */
  }
}
/* ===== MOBILE: STOP UGLY WORD BREAKS (TRADIN / G etc) ===== */
h1, h2, .title, .hero h1, .offer h1 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  white-space: normal !important;
}

/* Keep the first word together if you used <br> or tight widths */
@media (max-width: 480px) {
  h1, h2, .offer h1 {
    letter-spacing: 0.18em !important; /* tweak if needed */
    line-height: 1.05 !important;
    text-align: center !important;
  }
}