/* Rush Mind Coaching – Reset Your Mind (original-style) */
:root {
  --color-bg: #111013;
  --color-hero-top: #1e3f48;
  --color-hero-bottom: #132e36;
  --color-overlay: #132f37;
  --color-surface: #1a222d;
  --color-text: #ffffff;
  --color-text-muted: #e5e5e5;
  --color-accent: #c9eb55;
  --color-accent-alt: #8eb800;
  --color-accent-hover: #d4f06a;
  --color-border: rgba(255, 255, 255, 0.12);
  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-tag: 'Red Hat Text', sans-serif;
  --max-width: 1100px;
  --section-padding: 5rem 1.5rem;
  --footer-bar: #3c3474;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

body > main {
  flex: 1 0 auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--color-accent-hover);
}
.footer-logo {
  color: inherit;
}
.site-footer a:hover {
  color: var(--color-accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 8%;
  z-index: 1001;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #333;
  font-size: 0.875rem;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0.5rem;
  outline: 2px solid var(--color-accent-alt);
  outline-offset: 2px;
}

/* Header / Nav – sticky like original, follows on scroll */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 8%;
  min-height: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.site-header-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  line-height: 0;
}
.logo-img {
  height: 23px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #333;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 1.2px;
}
.nav-links a:hover {
  color: var(--color-accent-alt);
}
@media (max-width: 1024px) {
  .site-header {
    padding: 0 5%;
    min-height: 50px;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0 4%;
  }
  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
  .logo-img {
    height: 20px;
  }
}

/* Hero – 4-block structure to match original */
.hero-block {
  color: var(--color-text);
  text-align: center;
}
.hero-block--gradient {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, var(--color-hero-top) 69%, var(--color-hero-bottom) 21%);
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
/* Stack: both images on top of each other, hero-logo-2 on top */
.hero-images-stack {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}
.hero-images-stack .hero-block__image:first-child {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero-block__image--top {
  position: absolute;
  top: 0;
  left: 0%;
  width: 100%;
  z-index: 2;
  margin: 0;
  padding: 0;
}
.hero-block__image--top img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-block__image {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0;
}
.hero-block__image img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Boxed sections (like original e-con-boxed + e-con-inner) */
.hero-boxed {
  width: 100%;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}
.hero-boxed__inner {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 4%;
}
/* Reset Your Thinking section: gradient overlay like original 587bd58 */
.hero-boxed--reset {
  background: linear-gradient(180deg, #132F37 0%, rgba(255,255,255,0.34) 100%);
  padding: 2rem 4% 3rem;
}
.hero-boxed--reset2 {
  background: linear-gradient(180deg, #132F37 0%, rgba(255,255,255,0.34) 100%);
  padding: 2rem 4% 3rem;
}
.hero-boxed--reset .hero-boxed__inner {
  text-align: center;
}
.hero-reset-title {
  font-family: var(--font-tag);
  font-size: clamp(2.5rem, 10vw, 6.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0;
}
@media (max-width: 1024px) {
  .hero-block__image--top {
    left: 5%;
  }
}
@media (max-width: 767px) {
  .hero-block__image--top {
    left: 3%;
  }
}
.hero-block--main {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  background: var(--color-overlay);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 4% 4rem;
  padding-top: 22%;
  text-align: left;
  align-items: flex-end;
  box-sizing: border-box;
}
.hero-block--main .hero-main-inner {
  max-width: 50%;
  margin-left: 0;
  margin-right: 0;
}
.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape--top {
  top: 0;
}
.hero-shape svg {
  width: 100%;
  height: 130px;
  display: block;
}
.hero-shape-fill {
  fill: var(--color-overlay);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 5.375rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-accent-alt);
  text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}
.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0 0 0.5rem;
  text-shadow: 1px 2px 0 rgba(0,0,0,0.5);
}
.hero-cta-wrap {
  margin-top: 1.5rem;
}
.hero-cta-wrap .btn-outline {
  border-radius: 50px;
}
@media (max-width: 900px) {
  .hero-block--main {
    padding-top: 28%;
    align-items: center;
    text-align: center;
  }
  .hero-block--main .hero-main-inner {
    max-width: 100%;
  }
}

/* Hero animations – ping up from the bottom, longer duration */
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-anim-slide {
  animation: heroSlideUp 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-anim-fade {
  opacity: 0;
  animation: heroFadeIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-block__image--top.hero-anim-fade { animation-delay: 0.4s; }
.hero-boxed--reset .hero-reset-title.hero-anim-fade { animation-delay: 0.8s; }
.hero__text .hero-tag.hero-anim-fade { animation-delay: 0.2s; }
.hero__text .hero-title.hero-anim-fade { animation-delay: 0.35s; }
.hero__text .hero-sub.hero-anim-fade { animation-delay: 0.5s; }
.hero__text .hero-cta-wrap.hero-anim-fade { animation-delay: 0.65s; }
.hero-main-inner .hero-title.hero-anim-fade { animation-delay: 0.15s; }
.hero-main-inner .hero-sub.hero-anim-fade { animation-delay: 0.35s; }
.hero-main-inner .hero-cta-wrap.hero-anim-fade { animation-delay: 0.55s; }
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
}
.btn-outline:hover {
  background: #fff;
  color: #111013;
}

/* Sections – full width so backgrounds and colours stretch edge to edge */
.section {
  width: 100%;
  max-width: none;
  padding: var(--section-padding);
  margin: 0;
  box-sizing: border-box;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: var(--max-width);
  padding: 0 1.5rem;
  color: var(--color-text);
}
.section--coaching {
  position: relative;
  background-color: var(--color-bg);
}
.section--coaching .coaching-steps {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section--coaching .section-title,
.section--coaching .coaching-steps {
  position: relative;
  z-index: 1;
}
#coaching .section-title {
  color: var(--color-accent);
}

/* Coaching steps (01, 02, 03) */
.coaching-steps {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 700px) {
  .coaching-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1.75rem;
}
.step-card--1 {
  position: relative;
  border-color: rgba(255,255,255,0.15);
  overflow: hidden;
  background: linear-gradient(135deg, #54595F 0%, #f2295b 100%);
}
.step-card--1::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.step-card--1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(84,89,95,0.85) 0%, rgba(242,41,91,0.75) 100%);
  z-index: 1;
}
.step-card--1 .step-num,
.step-card--1 h3,
.step-card--1 p {
  position: relative;
  z-index: 2;
}
.step-card--2 {
  background: linear-gradient(135deg, #54595F 0%, #292DF2 100%);
  border-color: rgba(255,255,255,0.15);
}
.step-card--3 {
  background: linear-gradient(135deg, #54595F 0%, #0D9B00 100%);
  border-color: rgba(255,255,255,0.15);
}
.step-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 7.8vw, 4rem);
  font-weight: 100;
  text-transform: uppercase;
  color: #e1cdff;
  margin: 0 0 0.5rem;
}
.step-card--1 .step-num,
.step-card--2 .step-num,
.step-card--3 .step-num {
  color: rgba(255,255,255,0.9);
}
.step-card--1 h3,
.step-card--2 h3,
.step-card--3 h3 {
  color: #fff;
}
.step-card--1 p,
.step-card--2 p,
.step-card--3 p {
  color: rgba(255,255,255,0.9);
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}
.step-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Dedication (4 steps) – list with icons like original */
.dedication-section {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #2e274d 0%, #9b6dff 100%);
  color: #fff;
  margin: 0;
  padding: 4rem 4%;
  box-sizing: border-box;
}
.dedication-section .section-title {
  color: var(--color-accent);
  -webkit-text-stroke: 1px #000;
  text-shadow: -2px 0 6px #000;
}
.dedication-list {
  list-style: none;
  margin: 2rem auto 0;
  padding: 0;
  max-width: 900px;
}
.dedication-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
.dedication-item:last-child {
  margin-bottom: 0;
}
.dedication-icon {
  flex-shrink: 0;
  width: 75px;
  height: 75px;
  background: #6a65ff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}
.dedication-content h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: #fff;
}
.dedication-content h3 a {
  color: inherit;
}
.dedication-content p {
  margin: 0;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

/* About block – lime heading, light text */
.about-block {
  width: 100%;
  max-width: none;
  text-align: center;
  padding: 5vh 4%;
  background: var(--color-overlay);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  box-sizing: border-box;
}
.about-block .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3.875rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.about-block p {
  max-width: 465px;
  margin: 0 auto 1rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
}
.about-block .lead {
  color: var(--color-text-muted);
  font-size: 1rem;
}
.about-block .btn-wrap {
  margin-top: 1.5rem;
}
.about-block .btn-outline {
  border-color: #fff;
  color: #fff;
}
.about-block .btn-outline:hover {
  background: #fff;
  color: #111013;
}

/* Final CTA – full-bleed background image style */
.cta-section {
  width: 100%;
  max-width: none;
  text-align: center;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}
.cta-with-bg {
  background: var(--color-bg);
  position: relative;
}
.cta-with-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  z-index: 0;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 5.375rem);
  font-weight: 400;
  margin: 0 0 1rem;
  color: var(--color-accent);
  text-shadow: 10px 0 10px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
}
.cta-section .btn {
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.cta-section .btn-outline {
  border-width: 3px;
  border-radius: 72px;
}

/* Footer – two rows like original: white logo strip + purple copyright */
.site-footer {
  width: 100%;
  max-width: none;
  flex-shrink: 0;
  text-align: center;
  font-family: var(--font-body);
  box-sizing: border-box;
}
.footer-top {
  background: #fff;
  padding: 2rem 1.5rem;
}
.footer-top .footer-logo {
  display: inline-block;
  color: inherit;
}
.footer-logo img {
  height: 45px;
  width: auto;
  margin: 0 auto;
}
.footer-bottom {
  background: var(--footer-bar);
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  color: #c8d5dc;
}
.site-footer p {
  margin: 0;
}
.site-footer p a {
  color: #c8d5dc;
}
.site-footer p a:hover {
  color: var(--color-accent);
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1000;
}
.cookie-consent.show {
  display: flex;
}
.cookie-consent p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.cookie-consent .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.cookie-consent button:last-child {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
}
.cookie-consent button:last-child:hover {
  color: var(--color-text);
}

/* Form page */
.page-header {
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.page-header p {
  color: var(--color-text-muted);
  max-width: 42ch;
  margin: 0 auto;
}
.form-section {
  max-width: 560px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--color-text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-section .btn {
  width: 100%;
  padding: 0.9rem;
}
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.form-message--success {
  background: rgba(0, 128, 0, 0.15);
  border: 1px solid rgba(0, 128, 0, 0.4);
  color: var(--color-accent);
}
.form-message--error {
  background: rgba(180, 60, 60, 0.15);
  border: 1px solid rgba(180, 60, 60, 0.4);
  color: #e88;
}
.form-group--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* About James page */
.about-content {
  max-width: 640px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.legal-content {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 1.75rem 0 0.5rem;
}
.legal-content p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.legal-content ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content .change-log {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.legal-content .change-log li {
  margin-bottom: 0.75rem;
  padding-left: 0;
}
.legal-content a {
  color: var(--color-accent);
}
