/* ===================================
   Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-gold: #e0bb00;
  --brand-dark: #1b1e21;
  --white: #ffffff;
  --black: #000000;
  --font-jost: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jost);
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
}

/* ===================================
   Container & Layout - Full Width Backgrounds
   =================================== */
.container {
  max-width: 1125px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 0 100px; */
}

.container-full {
  width: 100%;
}

/* ===================================
   Header
   =================================== */
.header {
  background-color: var(--brand-dark);
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 206px;
  height: 110px;
  display: flex;
  align-items: center;
}

.logo img {
  width: 100%;
  height: auto;
}

.social-nav {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: -30px;
}

.social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-nav a:hover svg path {
  fill: var(--brand-gold);
}

.social-nav a img {
  width: 20px;
  height: 20px;
}

.social-nav a:nth-child(2) img {
  width: 25px;
  height: 25px;
}

.social-nav a:nth-child(3) img {
  width: 30px;
  height: 30px;
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-slider {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  height: 620px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 620px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-ellipse {
  position: absolute;
  bottom: -138px;
  right: -129px;
  width: 832px;
  height: 832px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(224, 187, 0, 0.15) 0%,
    rgba(224, 187, 0, 0) 70%
  );
}

.hero .container {
  max-width: 100%;
  padding: 0;
}

.hero-content {
  position: relative;
  height: 700px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text {
  /* z-index: 2; */
  max-width: 780px;
}

.hero-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 50px;
}

.hero-title-line {
  display: block;
}

.hero-title-line-2 {
  margin-left: 50px;
}

.hero-title-line-3 {
  margin-left: 100px;
}

.hero-title-line-4 {
  margin-left: 40px;
}

.hero-cta {
  display: flex;
  justify-content: flex-end;
  max-width: 320px;
  margin-left: 100px;
}

.hero-image {
  position: absolute;
  right: 10px;
  top: 0;
  width: 542px;
  height: 678px;
  z-index: 1;
}

.hero-image-1 {
  width: 424px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--brand-gold);
}

/* Hero Slider Navigation Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hero-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.hero-dot.active {
  background-color: var(--brand-gold);
  width: 40px;
  border-radius: 6px;
}

/* ===================================
   CTA Button - White Fill Animation Left to Right
   =================================== */
.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background-color: var(--brand-gold);
  color: var(--brand-dark);
  padding: 17px 15px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.3s ease;
  width: 320px;
  border: none;
  z-index: 1;
}

.cta-button::before {
  content: "";
  position: absolute;
  left: -52px;
  top: 0;
  bottom: 0;
  width: 52px;
  background-color: var(--white);
  transform: scaleY(-1) rotateY(180deg);
  z-index: -2;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.cta-button:hover::after {
  left: 0;
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 2;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

/* ===================================
   Content Sections with Image Bleeding & Overlapping
   =================================== */
.content-section {
  padding: 80px 0;
  position: relative;
  overflow: visible;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, auto);
  gap: 68px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.content-grid-reverse {
  grid-template-columns: minmax(0, auto) minmax(0, auto);
  justify-content: center;
}

.content-text {
  min-width: 0;
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 550px;
}

.section-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 30px;
}

.section-description {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--black);
}

.section-description strong {
  font-weight: 500;
}

.section-description p {
  margin-bottom: 1em;
}

.section-description p:last-child {
  margin-bottom: 0;
}

.gordon-logo {
  width: 225px;
  height: 91px;
}

.gordon-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content-image-wrapper {
  position: relative;
  width: auto;
  justify-self: start;
  z-index: 1;
}

.content-image {
  position: relative;
}

.content-grid-reverse .content-image-wrapper {
  justify-self: end;
}

/* Overlapping effect - bring images forward */
.early-life {
  padding-bottom: 65.5px;
}
.taking-control {
  padding: 0;
}
.taking-control .content-grid {
  gap: 149px;
}
.taking-control-img {
  width: 581px;
  height: 455px;
  object-position: right;
  margin-top: -240px;
}
.path-success {
  padding-top: 50.5px;
  padding-bottom: 0;
}
.path-success .content-grid {
  align-items: center;
}

.today-future {
  padding-top: 68.5px;
  padding-bottom: 30px;
}
.today-future .content-grid {
  gap: 149px;
}
.today-future h2 {
  margin-bottom: 20px;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop image sizes */
@media screen and (min-width: 769px) {
  .early-life .content-image {
    width: 100%;
    max-width: 708px;
    height: 430px;
  }

  .taking-control .content-image {
    width: 100%;
    max-width: 455px;
    height: 581px;
  }

  .path-success .content-image {
    width: 100%;
    max-width: 562px;
    height: 450px;
  }

  .today-future .content-image {
    width: 100%;
    max-width: 455px;
    height: 581px;
  }
}

.content-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: var(--brand-gold);
}

.today-future .content-text {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* ===================================
   As Seen In Section
   =================================== */
.as-seen-in {
  padding: 50px 0 30px;
}

.as-seen-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.logo-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.media-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

.media-logo-width {
  width: 209px;
  height: auto;
}

.as-seen-banner {
  max-width: 1031px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.as-seen-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===================================
   Testimonial Slider Section
   =================================== */
.testimonial-section {
  padding: 60px 0 0;
  background-color: var(--white);
}

.testimonial-slider-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-grid {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.testimonial-quote-icon {
  flex-shrink: 0;
}

.testimonial-title {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
  text-align: left;
}

.gordon-logo-mobile {
  display: none !important;
}

.testimonial-slider-wrapper {
  position: relative;
}

.testimonial-slides {
  position: relative;
  height: 400px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  font-style: italic;
  margin-bottom: 40px;
}

.testimonial-text p {
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.author-location {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Slider Navigation Dots */
.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.testimonial-dot:hover {
  background-color: #999;
  transform: scale(1.15);
}

.testimonial-dot.active {
  background-color: var(--brand-gold);
  transform: scale(1.2);
}

/* ===================================
   Contact Form Section
   =================================== */
.contact-form-section {
  position: relative;
  background-color: var(--brand-dark);
  padding: 52px 0;
  overflow: hidden;
}

.form-background {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 718px;
  height: 701px;
  opacity: 0.1;
  pointer-events: none;
}

.form-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-section .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 635px;
  width: 100%;
}

.form-title {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 35px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Floating Label Styles */
.floating-label-group {
  position: relative;
  gap: 0;
}

.floating-label {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  background-color: transparent;
}

.floating-label-group input:focus + .floating-label,
.floating-label-group input:not(:placeholder-shown) + .floating-label {
  top: -25px;
  font-size: 14px;
  color: var(--brand-gold);
}

.form-label {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: var(--white);
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-jost);
  font-size: 19px;
  padding: 10px 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  border-bottom-color: var(--brand-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
  border: 1px solid var(--white);
  padding: 20px;
  background-color: var(--brand-dark);
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select select {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-jost);
  font-size: 19px;
  padding: 20px;
  padding-right: 50px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.custom-select select:focus {
  border-color: var(--brand-gold);
}

.custom-select option {
  background-color: var(--brand-dark);
  color: var(--white);
}

.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-icon img {
  width: 12px;
  height: 7px;
  object-fit: contain;
}

.recaptcha-wrapper {
  display: flex;
  justify-content: flex-start;
}

.submit-button {
  align-self: flex-start;
}

.form-message {
  padding: 20px;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 20px;
}

.form-message.success {
  background-color: #4caf50;
  color: white;
}

.form-message.error {
  background-color: #f44336;
  color: white;
}

/* Conditional Questions */
.conditional-questions {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.conditional-questions .form-group {
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Footer Banner
   =================================== */
.footer-banner {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.footer-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================
   Social Stats Section
   =================================== */
.social-stats {
  background-color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  max-width: 1440px;
}

/* Desktop: 5 items in a row */
@media (min-width: 1200px) {
  .stats-grid {
    flex-wrap: nowrap;
    gap: 60px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  flex: 0 0 auto;
}

/* Logo items (last 3 items) - no stats, just images */
.stat-item:nth-child(4),
.stat-item:nth-child(5),
.stat-item:nth-child(6) {
  gap: 0;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 172px; */
}

.stat-icon svg {
  width: 50px;
  height: 50px;
}

.stat-number {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--black);
  font-family: var(--font-jost);
}

.stat-label {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 0.5px;
}

/* Tablet: 3 stats in first row, 2 images centered in second row */
@media (max-width: 1199px) {
  .stats-grid {
    justify-content: center;
    gap: 30px;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2),
  .stat-item:nth-child(3) {
    flex: 0 0 calc(33.333% - 30px);
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5),
  .stat-item:nth-child(6) {
    flex: 0 0 auto;
  }

  .stat-item img {
    width: 150px;
  }
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--brand-dark);
  padding: 50px 0;
  width: 100%;
  min-height: 200px;
}

.footer .container {
  max-width: 1104px;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.footer-logo {
  width: 183px;
  height: 98px;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-social-title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover svg path {
  fill: var(--brand-gold);
}

.social-links a img {
  width: 20px;
  height: 20px;
}

.footer-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-copyright,
.footer-link,
.footer-dot {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

.footer-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-gold);
}

/* ===================================
   Responsive Design
   =================================== */
@media screen and (max-width: 1440px) {
  .container-wide {
    padding: 0 80px;
  }

  .content-text {
    width: 100%;
    max-width: 550px;
  }

  .content-grid-reverse .content-image-wrapper {
    justify-self: start;
  }

  .hero-title-desktop {
    display: none;
  }
  .hero-title-mobile {
    display: block !important;
  }

  .taking-control-img {
    margin-top: 0;
  }
}

@media screen and (max-width: 1200px) {
  .hero-title {
    font-size: 56px;
  }
  .hero-title-desktop {
    display: none;
  }
  .hero-title-mobile {
    display: block !important;
  }

  .hero-image {
    width: 442px;
    height: 578px;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .content-grid,
  .content-grid-reverse {
    gap: 60px;
    grid-template-columns: minmax(0, auto) minmax(0, 450px);
  }

  .content-grid-reverse {
    grid-template-columns: minmax(0, 450px) minmax(0, auto);
  }

  .early-life .content-image {
    width: 100%;
    max-width: 500px;
    height: 320px;
  }

  .taking-control .content-image,
  .today-future .content-image {
    width: 100%;
    max-width: 350px;
    height: 450px;
  }

  .path-success .content-image {
    width: 100%;
    max-width: 450px;
    height: 360px;
  }
}

@media screen and (max-width: 992px) {
  .container-wide {
    padding: 0 40px;
  }

  .hero-title-desktop {
    display: none;
  }
  .hero-title-mobile {
    display: block !important;
  }

  .hero-slider {
    margin-top: 0px;
  }

  .hero-slide {
    height: 600px;
  }

  .hero-slider-wrapper {
    height: 600px;
  }

  .hero-content {
    height: 600px;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 30px;
  }

  .hero-image {
    width: 350px;
    height: 450px;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .hero-image-2 {
    bottom: -45px;
  }

  .content-grid,
  .content-grid-reverse {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .content-text {
    max-width: 100%;
  }

  .content-image-wrapper {
    width: 100%;
    justify-self: stretch;
  }

  .content-grid-reverse .content-image-wrapper {
    justify-self: stretch;
  }

  /* Reset bleeding on tablet/mobile */
  .early-life .content-image-wrapper,
  .path-success .content-image-wrapper {
    margin-left: 0;
  }

  .taking-control .content-image-wrapper,
  .today-future .content-image-wrapper {
    margin-right: 0;
  }

  .taking-control .content-grid,
  .today-future .content-grid {
    gap: 40px;
  }

  .logo-grid {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-card {
    padding: 40px 40px;
  }

  .testimonial-title {
    font-size: 20px;
  }

  .testimonial-text {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  /* Header Mobile */
  .header {
    height: 65px;
  }

  .logo {
    width: 153px;
    height: 82px;
  }

  .social-nav {
    gap: 20px;
    margin-top: -20px;
  }

  /* Hero Mobile */
  .hero-slider {
    margin-top: 65px;
  }

  .hero-slide {
    height: 635px;
  }

  .hero-slider-wrapper {
    height: 635px;
  }

  .hero-content {
    height: 635px;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
  }

  .hero-text {
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 39px;
    margin-bottom: 17px;
    /* text-align: right; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
  }
  .hero-title-desktop {
    display: none;
  }
  .hero-title-mobile {
    display: block !important;
  }

  .hero-title-line {
    display: block;
    /* text-align: center; */
    /* text-align: right; */
    /* margin-left: 0; */
  }

  .hero-cta {
    justify-content: flex-start;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-image {
    display: block;
    position: absolute;
    right: 10px;
    bottom: -60px;
    top: auto;
    width: 350px;
    height: 439px;
    z-index: 1;
  }

  .hero-ellipse {
    bottom: -163px;
    right: -163px;
    width: 594px;
    height: 594px;
  }

  /* Content Sections Mobile */
  .content-section {
    padding: 30px 0;
  }

  .container,
  .container-wide {
    padding: 0 20px;
  }

  .content-grid,
  .content-grid-reverse {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .content-text {
    padding: 0;
    order: 2;
  }

  .content-image-wrapper {
    order: 1;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Reset overlapping on mobile */
  .early-life,
  .taking-control,
  .path-success,
  .today-future {
    margin-bottom: 0 !important;
    padding-top: 30px !important;
    z-index: auto;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .section-description {
    font-size: 17px;
  }

  .today-future .content-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  /* Reorder content for Today & Future section */
  .today-future .section-description:first-child {
    order: 1;
  }

  .today-future .section-title {
    order: 2;
  }

  .today-future .section-description:last-child {
    order: 3;
  }

  /* CTA Button Mobile */
  .cta-button {
    width: 100%;
    max-width: 310px;
    font-size: 14px;
    letter-spacing: 1.4px;
    padding: 17px 15px;
    height: 45px;
  }

  /* As Seen In Mobile */
  .as-seen-in {
    padding: 30px 20px 20px;
  }

  .as-seen-title {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .logo-grid {
    gap: 20px;
  }

  .media-logo {
    height: 40px;
  }

  .media-logo-width {
    width: 143px;
    height: auto;
  }

  /* Testimonial Mobile */
  .testimonial-section {
    padding: 40px 20px 0;
  }

  .testimonial-slider-container {
    max-width: 100%;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;
  }

  .testimonial-quote-icon svg {
    width: 44px;
    height: 31px;
  }

  .testimonial-title {
    font-size: 18px;
    margin: 0;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    text-align: left;
  }

  .testimonial-author {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .author-image {
    width: 70px;
    height: 70px;
  }

  .author-name {
    font-size: 18px;
  }

  .author-location {
    font-size: 12px;
  }

  /* Form Section Mobile */
  .contact-form-section {
    padding: 30px 20px;
  }

  .contact-form-section .container {
    padding: 0;
  }

  .form-wrapper {
    margin: 0 auto;
  }

  .form-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .form-label,
  .floating-label {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .form-input,
  .form-textarea,
  .custom-select select {
    font-size: 17px;
  }

  .form-textarea {
    min-height: 150px;
    padding: 15px 20px;
  }

  .contact-form {
    gap: 15px;
  }

  .form-group {
    gap: 20px;
    margin-bottom: 30px;
  }

  /* Social Stats Mobile */
  .social-stats {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 42px;
  }

  /* Footer Mobile */
  .footer {
    padding: 50px 0;
  }

  .footer .container {
    max-width: 100%;
    padding: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-logo {
    width: 183px;
    height: 98px;
  }

  .footer-social {
    align-items: center;
    gap: 20px;
  }

  .footer-social-title {
    text-align: center;
  }

  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .gordon-logo-desktop {
    display: none;
  }

  .taking-control-image-wrapper .content-image,
  .today-future-image-wrapper .content-image {
    margin-right: 0;
    margin-left: auto;
  }

  .form-background {
    right: -360px;
    top: 10px;
    left: auto;
  }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
  .hero-image-1 {
    bottom: -98px;
  }
}

@media screen and (max-width: 480px) {
  .hero-text {
    padding: 0;
    margin: 0 auto;
    width: max-content;
  }
  /* Use same mobile styles as 768px since design is for 360px width */
  .hero-title {
    font-weight: 400;
  }

  .hero-title-desktop {
    display: none;
  }
  .hero-title-mobile {
    display: block !important;
  }

  .hero-title-line-3 {
    margin-left: 0;
  }

  .section-title {
    font-size: 22px;
  }

  .section-description {
    font-size: 17px;
  }

  .cta-button {
    font-size: 14px;
    letter-spacing: 1.4px;
    padding: 17px 15px;
  }

  .form-label,
  .floating-label {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .form-input,
  .form-textarea,
  .custom-select select {
    font-size: 17px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-label {
    font-size: 12px;
  }

  /* Smaller container on very small screens */
  .container,
  .form-wrapper,
  .footer .container {
    padding: 0 20px;
  }

  .hero-image {
    width: 100%;
    height: 400px;
    right: 5px;
  }

  .testimonial-grid {
    gap: 20px;
  }

  .taking-control-image-wrapper .content-image {
    width: 275px;
  }

  .social-stats .container {
    padding: 0;
  }

  .testimonial-section .container {
    padding: 0;
  }

  .testimonial-slides {
    height: 460px;
  }
}

[data-lastpass-icon-root] {
  display: none !important;
  float: unset !important;
}

.stat-icon-ag {
  width: 100%;
  max-width: 170px;
}

.stat-icon-boxwise {
  width: 100%;
  max-width: 130px;
}

.stat-icon-gordon-farrow {
  width: 100%;
  max-width: 225px;
}
