/*
 * Sojey Fernandez Homepage Stylesheet
 * Brand Colors:
 * - Beige: #EDE8E4
 * - Emerald (Dark Green): #205451
 * - Aqua: #6AD3BC
 * - Light Teal: #99C6B9
 * - Light Salmon: #FFB5A6
 * - Salmon: #FF8A66
 * - Vivid Terracotta: #F55A29
 * - White: #FFFFFF
 */

:root {
  --sojey-bg: #ede8e4;
  --sojey-surface: #ffffff;
  --sojey-text: #205451;
  --sojey-text-muted: #5c7e7b;
  --sojey-teal: #6ad3bc;
  --sojey-teal-dark: #205451;
  --sojey-mint: #99c6b9;
  --sojey-coral: #ff8a66;
  --sojey-coral-strong: #f55a29;
  --sojey-light-salmon: #ffb5a6;
  --sojey-line: rgba(32, 84, 81, 0.12);
  --sojey-radius: 24px;
  --sojey-radius-lg: 32px;
  --sojey-radius-sm: 12px;
  --sojey-shadow: 0 16px 40px rgba(32, 84, 81, 0.08);
  --sojey-shadow-hover: 0 24px 60px rgba(32, 84, 81, 0.14);
  --sojey-max-width: 1200px;
}

/* Base Styles & Resets */
.sojey-home {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--sojey-text);
  background-color: #ffffff;
  overflow-x: clip;
  line-height: 1.6;
}

.sojey-home * {
  box-sizing: border-box;
}

.sojey-container {
  width: min(100% - 40px, var(--sojey-max-width));
  margin-inline: auto;
}

.sojey-section {
  padding-block: clamp(60px, 8vw, 100px);
  position: relative;
}

/* Typography */
.sojey-home h1,
.sojey-home h2,
.sojey-home h3,
.sojey-home h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--sojey-teal-dark);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.sojey-home p,
.sojey-home li {
  margin: 0 0 16px;
  color: var(--sojey-text-muted);
  font-weight: 450;
}

.sojey-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--sojey-coral-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

/* Buttons */
.sojey-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.sojey-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(32, 84, 81, 0.15);
}

.sojey-button--primary {
  background-color: var(--sojey-teal-dark);
  color: #ffffff;
}

.sojey-button--primary:hover {
  background-color: #173e3b;
}

.sojey-button--secondary {
  background-color: transparent;
  color: var(--sojey-teal-dark);
  border: 1px solid var(--sojey-teal-dark);
}

.sojey-button--secondary:hover {
  background-color: rgba(32, 84, 81, 0.04);
}

.sojey-button--coral {
  background-color: var(--sojey-coral-strong);
  color: #ffffff;
}

.sojey-button--coral:hover {
  background-color: #d64719;
  box-shadow: 0 8px 20px rgba(245, 90, 41, 0.2);
}

.sojey-button--primary-dark {
  background-color: var(--sojey-teal-dark);
  color: #ffffff;
  width: 100%;
}

.sojey-button--primary-dark:hover {
  background-color: #173e3b;
}

/* Custom Header */
.sojey-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--sojey-line);
  position: sticky;
  top: 0;
  z-index: 100;
  padding-block: 14px;
}

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

.sojey-header__branding {
  display: flex;
  align-items: center;
}

.sojey-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.sojey-header__logo-img {
  height: clamp(34px, 4vw, 44px);
  width: auto;
  display: block;
}

.sojey-header__nav {
  display: flex;
  align-items: center;
}

.sojey-header__nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}

.sojey-header__menu {
  align-items: center;
}

.sojey-header__menu > .menu-item {
  position: relative;
}

.sojey-header__menu-item--has-children > a,
.sojey-header__menu-link-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sojey-header__menu-link-group {
  position: relative;
}

.sojey-header__menu-link-group > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.8em;
  line-height: 1;
}

.sojey-header__submenu-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--sojey-teal-dark);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sojey-header__button-text--short {
  display: none;
}

.sojey-header__submenu-toggle:focus-visible,
.sojey-header__toggle:focus-visible,
.sojey-header__button:focus-visible {
  outline: 2px solid rgba(32, 84, 81, 0.32);
  outline-offset: 2px;
}

.sojey-header__caret {
  font-size: 0.8em;
  line-height: 1;
}

.sojey-header__menu .sub-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 0;
  padding: 12px 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--sojey-line);
  box-shadow: 0 18px 38px rgba(32, 84, 81, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 140;
}

.sojey-header__menu .sub-menu .menu-item {
  width: 100%;
}

.sojey-header__menu .sub-menu a {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sojey-header__menu .sub-menu a:hover {
  background: rgba(106, 211, 188, 0.10);
}

.sojey-header__menu > .menu-item:hover > .sub-menu,
.sojey-header__menu > .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sojey-header__nav a {
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--sojey-teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}

.sojey-header__nav a:hover {
  color: var(--sojey-coral-strong);
}

.sojey-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  background: linear-gradient(180deg, #2e5e58 0%, #205451 100%);
  color: #ffffff !important;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(32, 84, 81, 0.18);
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sojey-header__button:hover {
  background-color: var(--sojey-teal);
  transform: translateY(-1px);
}

.sojey-header__button-icon {
  flex-shrink: 0;
  stroke: #ffffff;
}

.sojey-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  touch-action: manipulation;
}

.sojey-header__toggle-bar {
  width: 100%;
  height: 2px;
  background-color: var(--sojey-teal-dark);
  transition: all 0.2s ease;
}

/* Hero Section */
.sojey-hero {
  padding-top: clamp(60px, 6vw, 80px);
  padding-bottom: 0;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Hero-Section.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.sojey-hero__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.sojey-hero__content {
  padding-bottom: clamp(60px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center !important;
  text-align: center !important;
}

/* Meet Sojey Fernandez Mockup Typography (White Text) */
.sojey-hero__title-new {
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(2.4rem, 4vw, 3.8rem) !important;
  line-height: 1.05 !important;
  font-weight: 700 !important;
  margin: 0 0 16px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.sojey-hero__title-line-1 {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 12px !important;
}

.sojey-hero__title-meet {
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 0.85em !important;
  text-transform: none !important;
}

.sojey-hero__title-name {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
}

.sojey-hero__title-lastname {
  display: block !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
}

.sojey-hero__divider {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3) !important;
  margin: 20px auto !important;
}

.sojey-hero__subtitle-new {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: clamp(1.82rem, 2.45vw, 2.2rem) !important;
  color: #ffffff !important;
  margin: 0 0 16px 0 !important;
  text-align: center !important;
}

.sojey-hero__meta-new {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(0.84rem, 1.34vw, 0.96rem) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.5 !important;
  margin: 0 0 30px 0 !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

.sojey-hero__badge-new {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: clamp(0.72rem, 1.1vw, 0.8rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  margin-top: 25px !important;
  line-height: 1.4 !important;
}

.sojey-hero__badge-text {
  color: var(--sojey-teal-dark, #205451) !important;
}

.sojey-hero__badge-alas {
  display: inline-flex !important;
  align-items: center !important;
  color: #ffffff !important;
}

.sojey-hero__badge-wing {
  width: 22px !important;
  height: 16px !important;
  object-fit: contain !important;
  margin-left: 6px !important;
}

/* Middle Column: Portrait and Oval Gradient */
.sojey-hero__visual-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 520px;
  align-self: end;
}

.sojey-hero__visual-container--inside {
  display: none;
}

.sojey-hero__oval-bg {
  position: absolute;
  width: 270px;
  height: 440px;
  border-radius: 135px;
  background: radial-gradient(circle at top left, var(--sojey-light-salmon) 0%, #ffffff 40%, var(--sojey-teal) 100%);
  box-shadow: var(--sojey-shadow);
  z-index: 1;
  bottom: 40px;
}

.sojey-hero__portrait {
  position: absolute;
  bottom: 0;
  width: 320px;
  height: 480px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.sojey-hero__portrait img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Right Column: Stats and logos */
.sojey-hero__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: clamp(60px, 6vw, 80px);
}

.sojey-hero__stat-card {
  border-left: 2px solid var(--sojey-teal);
  padding-left: 20px;
}

.sojey-hero__stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--sojey-teal-dark);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.sojey-hero__stat-text {
  font-size: 0.94rem !important;
  line-height: 1.6 !important;
  color: var(--sojey-teal-dark, #193d39) !important;
  margin: 0;
}

.sojey-hero__stat-highlight {
  font-weight: 700 !important;
  font-style: italic !important;
  color: var(--sojey-teal-dark, #193d39) !important;
}

.sojey-hero__logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
  background-color: transparent;
  padding: 10px 0;
}

.sojey-hero__partners-img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.sojey-hero__partners-img:hover {
  opacity: 1;
  transform: scale(1.02);
}



/* Intro Section */
.sojey-intro {
  position: relative !important;
  overflow: hidden !important;
  background-color: #eef6f7 !important;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Green-Orange.jpg') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-top: 0;
  border-bottom: 0;
  padding: 92px 0 !important;
}

/* Remove decorative cream/watermark shapes for this section */
.sojey-intro__bg-shape {
  display: none !important;
}

.sojey-intro .sojey-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sojey-intro__title {
  width: 100%;
  text-align: center !important;
  max-width: 920px;
  margin: 0 auto 18px !important;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.08;
  display: block !important;
  color: #234c4e;
  text-wrap: balance;
}

.sojey-intro__lead {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 40px;
  padding-inline: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  line-height: 1.75;
  color: #355a5b;
  text-align: center !important;
  text-wrap: balance;
}

.sojey-intro__trajectory {
  display: flex;
  justify-content: center;
  margin: 34px 0 24px;
}

.sojey-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  justify-content: center;
  justify-items: center;
}

.sojey-intro__col {
  width: 100%;
  max-width: 348px;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 12px 34px rgba(101, 165, 177, 0.12);
}

/* Icon style for the new isotipo image */
.sojey-intro__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  padding: 11px;
  box-shadow: 0 10px 24px rgba(88, 145, 153, 0.14);
}

.sojey-intro__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sojey-intro__col p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.06rem;
  line-height: 1.7;
  color: #2c4f51;
  font-weight: 500;
  text-align: center !important;
  margin-inline: auto !important;
  max-width: 390px;
}

.sojey-intro__quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sojey-teal-dark);
  font-weight: 600;
  line-height: 1.4;
}

/* Paths Section */
.sojey-paths {
  background-color: #fbfaf7 !important;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Sojey.jpg') !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative !important;
  overflow: hidden !important;
  padding-block: clamp(72px, 8vw, 108px) !important;
}

.sojey-paths::before,
.sojey-paths::after {
  content: none !important;
}

.sojey-paths .sojey-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1180px;
  margin-inline: auto;
}

.sojey-section-heading--center {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 52px;
}

.sojey-section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.sojey-paths__video-container {
  margin-bottom: 50px;
}

.sojey-paths__video-backdrop {
  height: clamp(300px, 45vw, 480px);
  border-radius: var(--sojey-radius-lg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sojey-shadow);
}

.sojey-paths__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(32, 84, 81, 0.72) 0%, rgba(32, 84, 81, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  color: #ffffff;
}

.sojey-paths__video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ffffff;
  color: var(--sojey-coral-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: none;
  padding: 0;
  outline: none;
}

.sojey-paths__video-play-btn:hover {
  transform: scale(1.1);
  background-color: var(--sojey-light-salmon);
  color: #ffffff;
}

.sojey-paths__video-text h3 {
  color: #ffffff;
  margin-bottom: 4px;
}

.sojey-paths__video-text p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

.sojey-paths__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  max-width: 1080px !important;
  margin: 0 auto 46px !important;
  align-items: stretch !important;
}

.sojey-paths__card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  text-align: center !important;
  min-height: 100% !important;
  background: rgba(255, 255, 255, 0.52) !important;
  border: 1px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 28px !important;
  padding: 28px 26px 30px !important;
  box-shadow: 0 14px 36px rgba(32, 84, 81, 0.08) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.sojey-paths__card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 42px rgba(32, 84, 81, 0.12) !important;
}

.sojey-paths__card-icon-wrapper {
  width: 84px !important;
  height: 84px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: rgba(255, 255, 255, 0.9) !important;
  border: 1.5px solid !important;
  flex-shrink: 0 !important;
  box-shadow: 0 8px 22px rgba(32, 84, 81, 0.08) !important;
}

.sojey-paths__card-icon-wrapper.color-teal {
  border-color: var(--sojey-teal-dark, #205451) !important;
}

.sojey-paths__card-icon-wrapper.color-salmon {
  border-color: var(--sojey-coral, #ff8a66) !important;
}

.sojey-paths__card-icon-img {
  width: 48px !important;
  height: 48px !important;
  object-fit: contain !important;
}

.sojey-paths__card-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  width: 100%;
}

.sojey-paths__card h3 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 10px 0 !important;
  font-size: inherit !important;
}

.sojey-paths__card-num {
  display: none !important;
}

.sojey-paths__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.sojey-paths__card-title.color-teal {
  color: var(--sojey-teal-dark, #205451) !important;
}

.sojey-paths__card-title.color-salmon {
  color: var(--sojey-coral, #ff8a66) !important;
}

.sojey-paths__card p {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.96rem !important;
  color: var(--sojey-text-muted, #4f6f6c) !important;
  margin: 0 !important;
  line-height: 1.56 !important;
  max-width: 28ch;
}

.sojey-paths__divider-line {
  display: none !important;
}

.sojey-paths__quote-container {
  max-width: 940px;
  margin: 0 auto 26px;
  text-align: center;
}

.sojey-paths__quote {
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.75;
  color: #4b6664;
  text-align: center !important;
}

.sojey-paths__actions {
  display: flex !important;
  justify-content: center !important;
  margin-top: 0 !important;
}

.sojey-button-trayectoria {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: var(--sojey-teal-dark, #205451) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  padding: 16px 38px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(32, 84, 81, 0.12) !important;
}

.sojey-button-trayectoria:hover {
  background-color: var(--sojey-teal, #6ad3bc) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(32, 84, 81, 0.2) !important;
}

@media (max-width: 1024px) {
  .sojey-paths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 760px !important;
  }

  .sojey-paths__card:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin-inline: auto;
  }

  .sojey-intro__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
  }

  .sojey-intro__col:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .sojey-paths__grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 420px !important;
  }

  .sojey-paths__card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .sojey-paths__card {
    padding: 24px 20px 26px !important;
  }

  .sojey-paths__quote {
    line-height: 1.6;
  }
}

/* Ecosystem Section */
.sojey-ecosystem {
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.88)),
    url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Bg-BLue.jpg');
  background-size: cover;
  background-position: center center;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(32, 84, 81, 0.10);
  overflow: hidden;
}

.sojey-ecosystem::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,102,0.16) 0%, rgba(255,138,102,0) 70%);
  pointer-events: none;
}

.sojey-ecosystem::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,211,188,0.18) 0%, rgba(106,211,188,0) 70%);
  pointer-events: none;
}

.sojey-ecosystem__header-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 58px;
}

.sojey-ecosystem__header-grid h2 {
  font-size: clamp(1.02rem, 1.48vw, 1.28rem);
  line-height: 1.48;
  margin: 0;
  max-width: 760px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(32, 84, 81, 0.82);
}

.sojey-ecosystem .sojey-eyebrow {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.sojey-ecosystem__intro-text {
  position: relative;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 18px 50px rgba(32, 84, 81, 0.08);
  backdrop-filter: blur(10px);
}

.sojey-ecosystem__intro-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sojey-coral-strong), var(--sojey-teal));
}

.sojey-ecosystem__intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  padding-left: 12px;
  color: rgba(32, 84, 81, 0.88);
}

.sojey-ecosystem__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sojey-ecosystem__card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.82) 100%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 30px;
  padding: 28px 24px 26px;
  min-height: 240px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 45px rgba(32, 84, 81, 0.08);
  backdrop-filter: blur(8px);
}

.sojey-ecosystem__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sojey-coral-strong), var(--sojey-teal));
}

.sojey-ecosystem__card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,211,188,0.18) 0%, rgba(106,211,188,0) 72%);
}

.sojey-ecosystem__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(32, 84, 81, 0.14);
  border-color: rgba(106,211,188,0.45);
}

.sojey-ecosystem__card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.sojey-ecosystem__icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(106,211,188,0.2), rgba(255,181,166,0.2));
  color: var(--sojey-teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.sojey-ecosystem__card:hover .sojey-ecosystem__icon-circle {
  background: linear-gradient(135deg, var(--sojey-coral-strong), var(--sojey-coral));
  color: #ffffff;
}

.sojey-ecosystem__card-step {
  font-size: 0.76rem;
  font-weight: 800;
  color: rgba(32, 84, 81, 0.55);
  letter-spacing: 0.14em;
}

.sojey-ecosystem__card h3 {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--sojey-coral-strong);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sojey-ecosystem__card p {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(32, 84, 81, 0.82);
}

/* Products Section */
.sojey-products {
  background:
    radial-gradient(circle at top center, rgba(255,181,166,0.16) 0%, rgba(255,181,166,0) 34%),
    linear-gradient(180deg, #fffdfb 0%, #f7f3ef 100%);
  border-top: 1px solid var(--sojey-line);
}

.sojey-products__manual-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 38px 34px 30px;
  border-radius: 42px;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Sojey.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(255,255,255,0.94);
  box-shadow: 0 30px 70px rgba(32, 84, 81, 0.08);
}

.sojey-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.sojey-products__card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(252,249,245,0.42) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 18px 42px rgba(32, 84, 81, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.sojey-products__card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,211,188,0.18) 0%, rgba(106,211,188,0) 72%);
  pointer-events: none;
}

.sojey-products__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(32, 84, 81, 0.12);
  border-color: rgba(153,198,185,0.55);
}

.sojey-products__card--featured {
  border-color: rgba(106, 211, 188, 0.52);
  box-shadow: 0 24px 58px rgba(106, 211, 188, 0.18);
}

.sojey-products__card--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(106,211,188,0.98), rgba(106,211,188,0.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sojey-products__featured-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6ad3bc 0%, #52c4ab 100%);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sojey-products__image-wrapper {
  width: 198px;
  height: 198px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f5eee7 0%, #efe7de 100%);
  margin: 26px auto 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.55), 0 14px 34px rgba(32, 84, 81, 0.07);
}

.sojey-products__card--featured .sojey-products__image-wrapper {
  width: 212px;
  height: 212px;
  box-shadow: inset 0 0 0 12px rgba(255,255,255,0.55), 0 18px 40px rgba(106, 211, 188, 0.18);
}

.sojey-products__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.sojey-products__card:hover .sojey-products__image-wrapper img {
  transform: scale(1.04);
}

.sojey-products__card-content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
  align-items: center;
}

.sojey-products__card-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(32, 84, 81, 0.58);
}

.sojey-products__card-content h3 {
  font-size: clamp(1.46rem, 1.82vw, 1.72rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 232px;
}

.sojey-products__card-content p {
  font-size: 0.98rem;
  line-height: 1.72;
  margin-bottom: 30px;
  color: rgba(32, 84, 81, 0.80);
  max-width: 252px;
  flex-grow: 1;
}

.sojey-products__card-action {
  margin-top: auto;
  width: 100%;
}

.sojey-products__card-action .sojey-button {
  width: 100%;
}

.sojey-button--soft-salmon {
  background: linear-gradient(180deg, #ffb5a6 0%, #ff8a66 100%);
  color: #ffffff;
}

.sojey-button--soft-salmon:hover {
  background: linear-gradient(180deg, #ffab99 0%, #f55a29 100%);
}

.sojey-button--gold {
  background: linear-gradient(180deg, #6ad3bc 0%, #52c4ab 100%);
  color: #ffffff;
}

.sojey-button--gold:hover {
  background: linear-gradient(180deg, #61ccb5 0%, #43b89e 100%);
}

.sojey-button--deep {
  background: linear-gradient(180deg, #205451 0%, #173d3a 100%);
  color: #ffffff;
}

.sojey-button--deep:hover {
  background: linear-gradient(180deg, #1b4a48 0%, #123230 100%);
}

/* Clarity Call CTA Banner */
.sojey-clarity {
  background-color: transparent;
}

.sojey-products__clarity-wrap {
  margin-top: 34px;
}

.sojey-clarity__banner {
  background-color: var(--sojey-teal-dark);
  border-radius: var(--sojey-radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: #ffffff;
  box-shadow: var(--sojey-shadow);
  position: relative;
  overflow: hidden;
}

.sojey-clarity__banner::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: rgba(106, 211, 188, 0.1);
  top: -80px;
  right: -20px;
}

.sojey-clarity__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.sojey-clarity__icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.sojey-clarity__icon img {
  display: block;
  width: 34px;
  height: auto;
}

.sojey-clarity__banner h2 {
  color: #ffffff;
  margin: 0;
  font-size: 1.62rem;
  line-height: 1.3;
  max-width: 680px;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.sojey-clarity__action {
  flex-shrink: 0;
}

.sojey-form-placeholder {
  margin-top: 32px;
  background-color: var(--sojey-bg);
  border: 1px solid var(--sojey-line);
  border-radius: var(--sojey-radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.sojey-form-placeholder-inner {
  max-width: 480px;
  margin: 0 auto;
}

.sojey-form-icon {
  display: inline-flex;
  color: var(--sojey-teal);
  margin-bottom: 16px;
}

.sojey-form-placeholder-inner h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.62rem;
  color: var(--sojey-teal-dark);
  margin-bottom: 8px;
}

.sojey-form-placeholder-inner p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--sojey-text-muted);
  margin: 0;
}


/* Corporate Section */
.sojey-corporate {
  position: relative;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Green-Orange.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(32, 84, 81, 0.10);
  overflow: hidden;
}

.sojey-corporate::before {
  content: none;
}

.sojey-corporate::after {
  content: none;
}

.sojey-corporate__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.sojey-corporate__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0;
}

.sojey-corporate__content::before {
  content: none;
}

.sojey-corporate__content h2 {
  font-size: clamp(2.7rem, 4.2vw, 4.4rem);
  line-height: 0.94;
  margin-bottom: 18px;
  max-width: 560px;
  letter-spacing: -0.03em;
}

.sojey-corporate__content h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sojey-coral-strong), rgba(245, 90, 41, 0.16));
  margin-top: 18px;
}

.sojey-corporate__description {
  position: relative;
  max-width: 520px;
  padding-top: 0;
}

.sojey-corporate__description::before,
.sojey-corporate__description::after {
  content: none;
}

.sojey-corporate__description p {
  font-size: 1rem;
  line-height: 1.88;
  margin-bottom: 18px;
  color: rgba(32, 84, 81, 0.86);
}

.sojey-corporate__actions {
  margin-top: 34px;
}

.sojey-corporate__actions .sojey-button {
  min-width: 286px;
  min-height: 62px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(32, 84, 81, 0.16);
  padding-inline: 26px;
}

.sojey-corporate__partners {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(14, 59, 56, 0.96) 0%, rgba(9, 49, 47, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(9, 49, 47, 0.20);
  overflow: hidden;
}

.sojey-corporate__partners::before {
  content: none;
}

.sojey-corporate__partners::after {
  content: none;
}

.sojey-corporate__partners-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.18em;
  margin-bottom: 20px;
}

.sojey-corporate__partners-title::before {
  content: none;
}

.sojey-corporate__partners-title::after {
  content: none;
}

.sojey-corporate__partners-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
}

.sojey-corporate__logo-card {
  background: transparent;
  border: none;
  border-radius: 0;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  transition: transform 0.28s ease, opacity 0.28s ease;
  box-shadow: none;
}

.sojey-corporate__logo-card:hover {
  transform: translateY(-2px);
}

.sojey-corporate__logo-card img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: none;
  opacity: 0.96;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.sojey-corporate__logo-card:hover img {
  transform: scale(1.03);
  opacity: 1;
}

.sojey-corporate__logo-card svg {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.92;
}

.sojey-logo-text {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  color: var(--sojey-teal-dark);
}

/* Testimonials Section */
.sojey-testimonials {
  background: #ffffff;
  border-top: 1px solid var(--sojey-line);
  padding-bottom: clamp(24px, 3vw, 34px);
}

.sojey-testimonials__carousel-shell {
  position: relative;
  margin-top: 30px;
}

.sojey-testimonials__controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 18px;
}

.sojey-testimonials .sojey-testimonials__control {
  appearance: none !important;
  -webkit-appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
  width: 46px !important;
  height: 46px !important;
  border: 1.5px solid #205451 !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  color: #205451 !important;
  font-size: 1.15rem !important;
  font-weight: bold !important;
  box-shadow: 0 4px 12px rgba(32, 84, 81, 0.08) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease !important;
  padding: 0 !important;
}

.sojey-testimonials .sojey-testimonials__control:hover {
  background: #205451 !important;
  color: #ffffff !important;
  border-color: #205451 !important;
  box-shadow: 0 8px 20px rgba(32, 84, 81, 0.16) !important;
  transform: translateY(-1.5px) !important;
}

.sojey-testimonials .sojey-testimonials__control:active {
  transform: scale(0.94) !important;
  box-shadow: 0 2px 6px rgba(32, 84, 81, 0.08) !important;
}

.sojey-testimonials .sojey-testimonials__control:focus,
.sojey-testimonials .sojey-testimonials__control:focus-visible,
.sojey-testimonials__video-trigger:focus,
.sojey-testimonials__video-trigger:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(32, 84, 81, 0.24) !important;
}

.sojey-testimonials__carousel {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.sojey-testimonials__carousel::-webkit-scrollbar {
  display: none;
}

.sojey-testimonials__track {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.sojey-testimonials__card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.sojey-testimonials__card:hover {
  transform: translateY(-4px);
}

.sojey-testimonials__card--quote {
  padding: 0;
}

.sojey-testimonials__balloon {
  background: #ffffff;
  border: 1px solid rgba(32, 84, 81, 0.10);
  border-radius: 30px;
  padding: 34px 32px 36px;
  box-shadow: 0 16px 40px rgba(32, 84, 81, 0.08);
  position: relative;
  margin: 0 0 20px 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.sojey-testimonials__balloon::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffffff;
  filter: drop-shadow(0 2px 2px rgba(32, 84, 81, 0.04));
}

.sojey-testimonials__quote-heading {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-style: normal;
  font-weight: 800 !important;
  font-size: 1.25rem !important;
  line-height: 1.35 !important;
  color: var(--sojey-teal-dark) !important;
  margin: 0 0 14px 0 !important;
}

.sojey-testimonials__quote-text {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-style: normal;
  font-weight: 500 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  color: rgba(32, 84, 81, 0.8) !important;
  margin: 0 !important;
}

.sojey-testimonials__quote-icon {
  position: absolute;
  bottom: 24px;
  right: 28px;
  opacity: 1;
  pointer-events: none;
}

.sojey-testimonials__author {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-style: normal !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--sojey-coral-strong) !important;
  padding: 0 0 0 16px !important;
  margin: 0 !important;
  border: none !important;
  display: block !important;
}

.sojey-testimonials__card--video {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid rgba(32, 84, 81, 0.10) !important;
  border-radius: 30px !important;
  box-shadow: 0 16px 40px rgba(32, 84, 81, 0.08) !important;
  overflow: hidden !important;
  height: 270px !important;
  box-sizing: border-box !important;
}

.sojey-testimonials__card--video button.sojey-testimonials__video-trigger {
  appearance: none !important;
  -webkit-appearance: none !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: #ffffff !important;
  border-radius: inherit !important;
  overflow: hidden !important;
  box-shadow: none !important;
  text-align: left !important;
  color: inherit !important;
  cursor: pointer !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.sojey-testimonials__video-media {
  position: relative;
  flex: 1 1 auto;
  width: 100% !important;
  height: 100% !important;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sojey-testimonials__video-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.sojey-testimonials__card--video:hover .sojey-testimonials__video-play {
  transform: scale(1.12);
  background-color: var(--sojey-coral-strong) !important;
  border-color: var(--sojey-coral-strong) !important;
  box-shadow: 0 16px 36px rgba(245, 90, 41, 0.4);
}

@media (max-width: 768px) {
  .sojey-testimonials__balloon {
    min-height: 240px;
    padding: 24px 20px 28px;
    margin-bottom: 16px;
  }
  .sojey-testimonials__card--video {
    height: 240px !important;
  }
  .sojey-testimonials__quote-heading {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
  }
  .sojey-testimonials__quote-text {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 1100px) {
  .sojey-testimonials__card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

/* Podcast Section */
.sojey-podcast {
  background-color: #ffffff;
  border-top: 1px solid var(--sojey-line);
  padding-top: clamp(10px, 1.8vw, 18px);
}

.sojey-podcast__banner-container {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 28px;
  background: #c1ddd3;
}

.sojey-podcast__banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sojey-podcast__platforms {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  background: #a8cfc3;
  padding: 12px 28px;
}

.sojey-podcast__platform-logo {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  margin-inline: auto;
  display: block;
  object-fit: contain;
}

.sojey-podcast__content {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  padding-bottom: 10px;
}

.sojey-podcast__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 0.98;
  color: var(--sojey-teal-dark);
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

.sojey-podcast__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: #222222;
  margin-bottom: 28px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.01em;
}

.sojey-podcast__actions {
  display: flex;
  justify-content: center;
}

.sojey-podcast__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 290px;
  min-height: 58px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #a8d2c8;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 16px rgba(32, 84, 81, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.sojey-podcast__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(32, 84, 81, 0.18);
  background: #9bcabf;
}

.sojey-podcast__button-arrow {
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 1024px) {
  .sojey-podcast__platforms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 14px;
  }
}

@media (max-width: 767px) {
  .sojey-podcast__banner-container {
    margin-bottom: 22px;
  }

  .sojey-podcast__platforms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 10px;
    padding: 12px 14px;
  }

  .sojey-podcast__platform-logo {
    max-height: 16px;
  }

  .sojey-podcast__title {
    font-size: clamp(2.3rem, 11vw, 3.1rem);
  }

  .sojey-podcast__button {
    min-width: 250px;
    width: 100%;
    max-width: 320px;
  }

  .sojey-intro__lead {
    margin-bottom: 28px;
    line-height: 1.65;
  }

  .sojey-intro__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sojey-intro__col:last-child {
    grid-column: auto;
    max-width: none;
  }
}

/* Newsletter Section */
.sojey-newsletter {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8f5 100%);
  border-bottom: 1px solid var(--sojey-line);
  padding: clamp(10px, 1.3vw, 16px) 0 clamp(72px, 8vw, 108px);
}

.sojey-newsletter .sojey-container {
  max-width: 1180px;
}

.sojey-newsletter__box {
  max-width: 760px;
  margin-inline: auto;
  background:
    radial-gradient(circle at top left, rgba(255, 181, 166, 0.14) 0%, transparent 38%),
    radial-gradient(circle at bottom right, rgba(106, 211, 188, 0.12) 0%, transparent 42%),
    rgba(255,255,255,0.92);
  border: 1px solid rgba(32, 84, 81, 0.10);
  border-radius: 34px;
  padding: 42px 42px 38px;
  box-shadow: 0 24px 64px rgba(32, 84, 81, 0.10);
  text-align: center;
  backdrop-filter: blur(3px);
}

.sojey-newsletter__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.sojey-newsletter__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sojey-coral);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255, 138, 102, 0.18);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(255, 138, 102, 0.10);
}

.sojey-newsletter__header h3 {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.18;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--sojey-teal-dark);
  max-width: 560px;
}

.sojey-newsletter__form-wrap {
  max-width: 520px;
  margin-inline: auto;
}

.sojey-newsletter__form-wrap .fluentform,
.sojey-newsletter__form-wrap form {
  margin: 0;
}

.sojey-newsletter__form-wrap .ff-el-group {
  margin-bottom: 12px !important;
}

.sojey-newsletter__form-wrap .ff-t-cell,
.sojey-newsletter__form-wrap .ff-el-input--content {
  margin-bottom: 0 !important;
}

.sojey-newsletter__form-wrap .ff_submit_btn_wrapper {
  margin-top: 4px !important;
  margin-bottom: 0 !important;
}

.sojey-newsletter__form-wrap .ff-el-form-control,
.sojey-newsletter__form-wrap input[type='email'],
.sojey-newsletter__form-wrap input[type='text'] {
  width: 100% !important;
  min-height: 58px !important;
  border-radius: 16px !important;
  border: 1.5px solid rgba(32, 84, 81, 0.16) !important;
  padding: 16px 22px !important;
  font-size: 0.98rem !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  color: var(--sojey-teal-dark) !important;
  background: rgba(255,255,255,0.96) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  text-align: center;
}

.sojey-newsletter__form-wrap .ff-el-form-control:focus,
.sojey-newsletter__form-wrap input[type='email']:focus,
.sojey-newsletter__form-wrap input[type='text']:focus {
  border-color: rgba(106, 211, 188, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(106, 211, 188, 0.14) !important;
  outline: none !important;
}

.sojey-newsletter__form-wrap .ff-btn,
.sojey-newsletter__form-wrap .ff-btn-submit,
.sojey-newsletter__form-wrap button[type='submit'] {
  width: 100% !important;
  min-height: 58px !important;
  border: none !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #ffb5a6 0%, #ff8a66 100%) !important;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow: 0 14px 28px rgba(255, 138, 102, 0.20) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease !important;
}

.sojey-newsletter__form-wrap .ff-btn:hover,
.sojey-newsletter__form-wrap .ff-btn-submit:hover,
.sojey-newsletter__form-wrap button[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(255, 138, 102, 0.26) !important;
  filter: saturate(1.03);
}

.sojey-newsletter__form-wrap .ff_errors,
.sojey-newsletter__form-wrap .text-danger,
.sojey-newsletter__form-wrap .error {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
  text-align: center !important;
}

.sojey-newsletter__form-wrap .ff-message-success,
.sojey-newsletter__form-wrap .ff-message-success p,
.sojey-newsletter__form-wrap .ff-message-successful {
  border-radius: 16px !important;
  background: rgba(106, 211, 188, 0.12) !important;
  color: var(--sojey-teal-dark) !important;
  border: 1px solid rgba(106, 211, 188, 0.22) !important;
  padding: 14px 18px !important;
  margin-top: 14px !important;
}

@media (max-width: 767px) {
  .sojey-newsletter {
    padding-block: 56px 72px;
  }

  .sojey-newsletter__box {
    max-width: 100%;
    border-radius: 26px;
    padding: 32px 22px 28px;
  }

  .sojey-newsletter__icon {
    width: 56px;
    height: 56px;
  }

  .sojey-newsletter__header h3 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }
}

/* Motion System */
@keyframes sojeyFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes sojeyGlowPulse {
  0%,
  100% {
    box-shadow: 0 16px 40px rgba(32, 84, 81, 0.10);
  }
  50% {
    box-shadow: 0 24px 54px rgba(255, 138, 102, 0.16);
  }
}

@keyframes sojeySoftSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  40% {
    opacity: 0.18;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.sojey-motion-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.985);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--sojey-motion-delay, 0ms);
  will-change: opacity, transform;
}

.sojey-motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.sojey-hero__stat-card {
  animation: sojeyFloat 7.2s ease-in-out infinite;
  animation-delay: 0.8s;
}

.sojey-video-banner,
.sojey-clarity__banner,
.sojey-newsletter__box {
  position: relative;
  isolation: isolate;
}

.sojey-video-banner::after,
.sojey-clarity__banner::after,
.sojey-newsletter__box::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 30%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}

.sojey-video-banner:hover::after,
.sojey-clarity__banner:hover::after,
.sojey-newsletter__box:hover::after {
  animation: sojeySoftSweep 1.4s ease;
}

.sojey-video-banner,
.sojey-products__card,
.sojey-clarity__banner,
.sojey-corporate__logo-card,
.sojey-testimonials__card,
.sojey-testimonials__video-card,
.sojey-podcast__banner-container,
.sojey-newsletter__box {
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    filter 0.35s ease;
}

.sojey-products__card:hover,
.sojey-testimonials__card:hover,
.sojey-testimonials__video-card:hover,
.sojey-podcast__banner-container:hover,
.sojey-newsletter__box:hover {
  transform: translateY(-6px);
}

.sojey-corporate__logo-card:hover {
  transform: translateY(-4px) scale(1.02);
}

.sojey-video-banner:hover,
.sojey-clarity__banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--sojey-shadow-hover);
}

.sojey-video-banner {
  animation: sojeyGlowPulse 6.4s ease-in-out infinite;
}

.sojey-hero__partners-img,
.sojey-podcast__platform-logo {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.sojey-podcast__platform-logo:hover,
.sojey-hero__partners-img:hover {
  transform: translateY(-2px) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .sojey-motion-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sojey-hero__portrait,
  .sojey-hero__stat-card,
  .sojey-video-banner,
  .sojey-video-banner::after,
  .sojey-clarity__banner::after,
  .sojey-newsletter__box::after {
    animation: none !important;
  }

  .sojey-video-banner,
  .sojey-products__card,
  .sojey-clarity__banner,
  .sojey-corporate__logo-card,
  .sojey-testimonials__card,
  .sojey-testimonials__video-card,
  .sojey-podcast__banner-container,
  .sojey-newsletter__box,
  .sojey-podcast__platform-logo,
  .sojey-hero__partners-img {
    transition: none !important;
    transform: none !important;
  }
}

/* Custom Footer */
.sojey-footer {
  background-color: #193d39;
  color: #ffffff;
  padding-block: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sojey-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.sojey-footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: start;
}

.sojey-footer__logo {
  justify-self: center;
  text-align: center;
}

.sojey-footer__social-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.6;
}

.sojey-footer__social-links {
  display: flex;
  gap: 12px;
}

.sojey-footer__social-links a {
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.sojey-footer__social-links a:hover {
  opacity: 1;
  color: var(--sojey-teal);
  transform: translateY(-1px);
}

.sojey-footer__logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.sojey-footer__logo a img {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  max-height: 68px;
}

.sojey-footer__logo-light {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-left: 4px;
}

.sojey-footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  text-align: right;
  gap: 8px;
}

.sojey-footer__copyright {
  font-size: 0.72rem;
  opacity: 0.6;
  margin: 0;
}

.sojey-footer__links {
  display: flex;
  gap: 8px;
  font-size: 0.72rem;
  align-items: center;
}

.sojey-footer__links a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.sojey-footer__links a:hover {
  opacity: 1;
}

.sojey-footer__divider {
  opacity: 0.3;
}

/* Responsiveness & Media Queries */
@media (max-width: 1024px) {
  .sojey-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .sojey-hero__sidebar {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .sojey-hero__logo-grid {
    grid-template-columns: repeat(3, 1fr);
    flex-grow: 1;
    max-width: 500px;
  }

  .sojey-intro__grid,
  .sojey-paths__grid,
  .sojey-products__grid,
  .sojey-testimonials__grid,
  .sojey-testimonials__videos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sojey-products__card--featured {
    transform: none;
  }

  .sojey-testimonials__card:last-child,
  .sojey-testimonials__video-card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin-inline: auto;
  }

  .sojey-ecosystem__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sojey-corporate__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sojey-podcast__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sojey-podcast__col {
    padding: 10px;
  }
}

/* Video Banner Section */
.sojey-video-banner-section {
  padding-block: 28px 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f1 100%);
}

.sojey-intro__video-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 34px auto 0;
}

.sojey-video-banner {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border-radius: 28px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  animation: none !important;
  transform: none !important;
  isolation: isolate;
}

.sojey-video-banner::after {
  display: none;
}

.sojey-video-banner__player-shell {
  position: relative;
  width: min(100%, 860px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(32, 84, 81, 0.12);
  background: #0f2f2d;
  box-shadow: 0 24px 64px rgba(32, 84, 81, 0.16);
}

.sojey-video-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  background: transparent;
}

.sojey-video-banner__play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  z-index: 3;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(20, 50, 48, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sojey-video-banner.is-paused .sojey-video-banner__play-indicator {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sojey-video-banner__player,
.sojey-video-banner__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sojey-video-banner__player iframe {
  border: 0;
  pointer-events: auto;
}

.sojey-video-banner__controls {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.sojey-video-banner__control {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 50, 48, 0.65) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.24s ease;
}

.sojey-video-banner__control:hover,
.sojey-video-banner__control:active {
  transform: translateY(-2px);
  background: rgba(20, 50, 48, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.sojey-video-banner__control-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.sojey-video-lightbox[hidden] {
  display: none !important;
}

.sojey-video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.sojey-video-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 55, 52, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sojey-video-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: auto;
  padding: 16px;
  border-radius: 30px;
  background: rgba(15, 58, 55, 0.78);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(3, 18, 17, 0.32);
}

.sojey-video-lightbox__frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 54px rgba(0,0,0,0.24);
}

.sojey-video-lightbox__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sojey-video-lightbox__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(12, 42, 40, 0.72);
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.sojey-video-lightbox-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .sojey-video-lightbox {
    padding: 16px;
  }

  .sojey-video-lightbox__dialog {
    width: 100%;
    padding: 12px;
    border-radius: 24px;
  }

  .sojey-video-lightbox__frame-wrap {
    border-radius: 18px;
  }

  .sojey-video-lightbox__close {
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

.sojey-video-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  height: 100vh !important;
  padding: clamp(18px, 4vw, 48px) !important;
}

.sojey-video-lightbox:not([hidden]) {
  display: flex !important;
}

.sojey-video-lightbox__backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(10, 35, 33, 0.78) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sojey-video-lightbox__dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 1120px) !important;
  max-height: calc(100vh - 96px) !important;
  margin: 0 auto !important;
  padding: 16px !important;
  border-radius: 30px !important;
}

.sojey-video-lightbox__frame-wrap {
  aspect-ratio: 16 / 9;
  padding-top: 0 !important;
  max-height: calc(100vh - 140px);
}

.sojey-video-lightbox__frame-wrap iframe {
  position: absolute !important;
  inset: 0 !important;
}

body.sojey-video-lightbox-open {
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .sojey-video-lightbox {
    padding: 14px !important;
  }

  .sojey-video-lightbox__dialog {
    padding: 10px !important;
    border-radius: 22px !important;
    max-height: calc(100vh - 28px) !important;
  }

  .sojey-video-lightbox__frame-wrap {
    max-height: calc(100vh - 72px);
  }
}

@media (max-width: 767px) {
  .sojey-section {
    padding-block: 44px;
  }

  .sojey-container {
    width: min(100% - 24px, var(--sojey-max-width));
  }

  .sojey-header {
    padding-block: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
  }

  .sojey-header__container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px;
    position: relative;
  }

  .sojey-header__logo-img {
    height: 36px;
  }

  .sojey-header__branding {
    order: 1 !important;
    flex: 1 1 auto;
  }

  .sojey-header__actions {
    order: 2 !important;
    margin-left: auto !important;
    margin-right: 8px !important;
  }

  .sojey-header__button-text--full {
    display: none !important;
  }

  .sojey-header__button-text--short {
    display: inline !important;
  }

  .sojey-header__button {
    padding: 0 16px !important;
    width: auto !important;
    min-width: 126px !important;
    height: 46px !important;
    min-height: 46px !important;
    border-radius: 999px !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(180deg, #2e5e58 0%, #205451 100%) !important;
    box-shadow: 0 10px 24px rgba(32, 84, 81, 0.18) !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.08em !important;
    white-space: nowrap;
  }

  .sojey-header__button-icon {
    width: 18px !important;
    height: 18px !important;
  }

  .sojey-header__toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    order: 3 !important;
    margin-left: 0 !important;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 10px 24px rgba(32, 84, 81, 0.10) !important;
    border: 1px solid rgba(32, 84, 81, 0.10) !important;
    gap: 4px;
    outline: none !important;
  }

  .sojey-header__toggle:hover,
  .sojey-header__toggle:active,
  .sojey-header__toggle:focus,
  .sojey-header__toggle:focus-visible {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(32, 84, 81, 0.16) !important;
    box-shadow: 0 10px 24px rgba(32, 84, 81, 0.10) !important;
    outline: none !important;
  }

  .sojey-header__toggle.is-open,
  .sojey-header__toggle.is-open:hover,
  .sojey-header__toggle.is-open:active,
  .sojey-header__toggle.is-open:focus,
  .sojey-header__toggle.is-open:focus-visible {
    background: rgba(32, 84, 81, 0.08) !important;
    border-color: rgba(32, 84, 81, 0.16) !important;
    box-shadow: 0 10px 24px rgba(32, 84, 81, 0.10) !important;
    outline: none !important;
  }

  .sojey-header__toggle-bar {
    width: 18px;
    transform-origin: center;
  }

  .sojey-header__toggle.is-open .sojey-header__toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .sojey-header__toggle.is-open .sojey-header__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .sojey-header__toggle.is-open .sojey-header__toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .sojey-header__nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 44px rgba(32, 84, 81, 0.14);
    border: 1px solid rgba(32, 84, 81, 0.10);
    backdrop-filter: blur(14px);
    z-index: 120;
  }

  .sojey-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sojey-header__menu,
  .sojey-header__menu > .menu-item,
  .sojey-header__menu > .menu-item > a,
  .sojey-header__menu-link-group {
    width: 100%;
  }

  .sojey-header__nav a {
    letter-spacing: 0.08em;
  }

  .sojey-header__menu > .menu-item > a,
  .sojey-header__menu-link-group {
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(248, 246, 242, 0.95);
    border: 1px solid rgba(32, 84, 81, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  }

  .sojey-header__menu > .menu-item > a:hover,
  .sojey-header__menu > .menu-item > a:active,
  .sojey-header__menu > .menu-item > a:focus,
  .sojey-header__menu > .menu-item > a:focus-visible,
  .sojey-header__menu-link-group:hover,
  .sojey-header__menu-link-group:active,
  .sojey-header__menu-link-group:focus-within {
    background: rgba(106, 211, 188, 0.10) !important;
    border-color: rgba(32, 84, 81, 0.16) !important;
    box-shadow: 0 10px 22px rgba(32, 84, 81, 0.08), inset 0 1px 0 rgba(255,255,255,0.72) !important;
    transform: translateY(-1px);
  }

  .sojey-header__menu-link-group {
    display: flex;
    justify-content: space-between;
  }

  .sojey-header__menu-link-group > a::after {
    content: none;
  }

  .sojey-header__submenu-toggle {
    display: inline-flex !important;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: rgba(106, 211, 188, 0.14);
    color: var(--sojey-teal-dark) !important;
    border: 1px solid rgba(32, 84, 81, 0.14) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .sojey-header__submenu-toggle:hover,
  .sojey-header__submenu-toggle:active,
  .sojey-header__submenu-toggle:focus,
  .sojey-header__submenu-toggle:focus-visible {
    color: var(--sojey-teal-dark) !important;
    background: rgba(32, 84, 81, 0.10) !important;
    border-color: rgba(32, 84, 81, 0.22) !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .sojey-header__menu-item--has-children.is-open .sojey-header__submenu-toggle {
    background: rgba(32, 84, 81, 0.12) !important;
    border-color: rgba(32, 84, 81, 0.22) !important;
  }

  .sojey-header__menu-item--has-children.is-open .sojey-header__caret {
    transform: rotate(180deg);
  }

  .sojey-header__caret {
    transition: transform 0.22s ease;
  }

  .sojey-header__menu .sub-menu {
    position: static;
    min-width: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    padding: 8px;
    margin-top: 8px;
  }

  .sojey-header__menu-item--has-children.is-open > .sub-menu {
    display: grid;
  }

  .sojey-header__menu .sub-menu a {
    padding: 12px 14px;
    font-size: 0.68rem;
    border-radius: 14px;
    background: rgba(255,255,255,0.9);
  }

  .sojey-hero {
    padding-top: 32px;
    background-position: 28% center;
  }

  .sojey-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .sojey-hero__content {
    order: 1;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.50);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 28px;
    padding: 24px 16px 0;
    backdrop-filter: blur(6px);
    overflow: hidden;
  }

  .sojey-hero__title-new {
    font-size: clamp(2rem, 10vw, 2.7rem) !important;
    color: #205451 !important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.30);
  }

  .sojey-hero__title-line-1 {
    gap: 8px !important;
  }

  .sojey-hero__subtitle-new {
    font-size: clamp(1.42rem, 7vw, 1.8rem) !important;
    margin-bottom: 12px !important;
    color: #205451 !important;
  }

  .sojey-hero__meta-new {
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 20px !important;
    color: rgba(32, 84, 81, 0.84) !important;
  }

  .sojey-hero__divider {
    background-color: rgba(32, 84, 81, 0.18) !important;
  }

  .sojey-hero__badge-new {
    font-size: 0.66rem !important;
    gap: 4px !important;
  }

  .sojey-hero__badge-alas {
    color: #205451 !important;
  }

  .sojey-hero__visual-container--outside {
    display: none;
  }

  .sojey-hero__visual-container--inside {
    display: flex;
    order: 0;
    max-width: none;
    width: calc(100% + 18px);
    height: 350px;
    margin: 18px -9px 0;
    align-self: stretch;
  }

  .sojey-hero__visual-container--inside .sojey-hero__oval-bg {
    width: 240px;
    height: 360px;
    bottom: 0;
  }

  .sojey-hero__visual-container--inside .sojey-hero__portrait {
    width: 100%;
    height: 100%;
  }

  .sojey-hero__visual-container--inside .sojey-hero__portrait img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    object-position: center bottom;
  }

  .sojey-hero__sidebar {
    order: 2;
    grid-column: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }

  .sojey-hero__stat-card,
  .sojey-hero__logos-container {
    width: 100%;
    max-width: 320px;
  }

  .sojey-hero__stat-card {
    padding: 18px 16px;
    text-align: center;
  }

  .sojey-hero__stat-number {
    font-size: 2rem;
  }

  .sojey-hero__stat-text {
    font-size: 0.88rem;
  }

  .sojey-intro__title,
  .sojey-paths__main-title,
  .sojey-products h2,
  .sojey-testimonials h2,
  .sojey-podcast__title,
  .sojey-corporate__content h2 {
    font-size: clamp(2rem, 9vw, 2.6rem) !important;
  }

  .sojey-intro__lead,
  .sojey-paths__quote,
  .sojey-products .sojey-section-heading p,
  .sojey-corporate__description p {
    font-size: 0.96rem !important;
    line-height: 1.65 !important;
  }

  .sojey-testimonials__quote-text {
    font-size: 1.06rem !important;
    line-height: 1.72 !important;
  }

  .sojey-button-trayectoria {
    width: 100% !important;
    max-width: 340px !important;
    padding: 18px 22px !important;
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .sojey-intro__grid,
  .sojey-paths__grid,
  .sojey-ecosystem__grid,
  .sojey-products__grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    max-width: none !important;
  }

  .sojey-testimonials__controls {
    justify-content: center;
    margin-bottom: 14px;
  }

  .sojey-testimonials__carousel {
    overflow-x: auto;
  }

  .sojey-testimonials__track {
    gap: 16px;
  }

  .sojey-testimonials__card {
    flex-basis: 86%;
    min-height: 0;
    margin-inline: 0 !important;
  }

  .sojey-testimonials__video-trigger {
    min-height: 0;
  }

  .sojey-testimonials__video-media {
    min-height: 190px;
  }

  .sojey-testimonials__video-name {
    font-size: 0.95rem;
  }

  .sojey-intro__col,
  .sojey-paths__card,
  .sojey-ecosystem__card,
  .sojey-products__card {
    max-width: none !important;
    margin-inline: 0 !important;
  }

  .sojey-intro__col:last-child,
  .sojey-paths__card:last-child {
    grid-column: auto !important;
    max-width: none !important;
    margin-inline: 0 !important;
  }

  .sojey-intro__video-wrap {
    margin-top: 22px;
  }

  .sojey-video-banner {
    padding: 0;
  }

  .sojey-video-banner__player-shell {
    width: 100%;
    border-radius: 20px;
  }

  .sojey-video-banner__play-indicator {
    width: 56px;
    height: 56px;
  }

  .sojey-video-banner__controls {
    right: 12px;
    bottom: 12px;
    gap: 6px;
  }

  .sojey-video-banner__control {
    height: 34px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .sojey-ecosystem__header-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
    text-align: center;
  }

  .sojey-ecosystem__intro-text {
    padding: 22px 18px;
  }

  .sojey-ecosystem__intro-text::before {
    top: 16px;
    bottom: 16px;
  }

  .sojey-products__manual-wrap {
    padding: 22px 14px 20px;
    border-radius: 28px;
  }

  .sojey-products__card {
    border-radius: 24px;
  }

  .sojey-products__image-wrapper,
  .sojey-products__card--featured .sojey-products__image-wrapper {
    width: 168px;
    height: 168px;
    margin-top: 22px;
  }

  .sojey-products__card-content {
    padding: 18px 16px 22px;
  }

  .sojey-products__card-content h3 {
    max-width: none;
    font-size: clamp(1.5rem, 8vw, 1.8rem);
  }

  .sojey-products__card-content p {
    max-width: none;
    font-size: 0.94rem;
    margin-bottom: 22px;
  }

  .sojey-products__clarity-wrap {
    margin-top: 34px;
  }

  .sojey-clarity__banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 24px 18px;
    gap: 18px;
  }

  .sojey-clarity__content {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .sojey-clarity__banner h2 {
    font-size: clamp(1.48rem, 7vw, 1.92rem);
    line-height: 1.18;
    max-width: none;
  }

  .sojey-clarity__action,
  .sojey-clarity__action .sojey-button {
    width: 100%;
  }

  .sojey-corporate__grid {
    gap: 28px;
  }

  .sojey-corporate__content {
    text-align: center;
  }

  .sojey-corporate__actions {
    justify-content: center;
  }

  .sojey-corporate__partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sojey-corporate__logo-card {
    min-height: 88px;
    padding: 14px;
  }

  .sojey-testimonials__videos {
    margin-top: 28px;
  }

  .sojey-testimonials__video-card {
    padding: 12px;
    border-radius: 22px;
  }

  .sojey-testimonials__videos-header {
    text-align: center;
  }

  .sojey-testimonials__videos-header h3 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .sojey-podcast__banner-container {
    border-radius: 20px;
  }

  .sojey-podcast__platforms {
    gap: 10px;
    padding: 10px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sojey-podcast__platform-logo {
    max-height: 18px;
  }

  .sojey-podcast__content {
    padding-bottom: 4px;
    text-align: center;
  }

  .sojey-podcast__button {
    width: 100%;
    justify-content: center;
  }

  .sojey-newsletter {
    padding: 10px 0 64px;
  }

  .sojey-newsletter__box {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .sojey-newsletter__header {
    gap: 12px;
    text-align: center;
  }

  .sojey-newsletter__header h3 {
    font-size: clamp(1.3rem, 7vw, 1.7rem);
  }

  .sojey-footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
  }

  .sojey-footer__social,
  .sojey-footer__logo,
  .sojey-footer__info {
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .sojey-footer__logo a img {
    max-width: min(100%, 220px);
    max-height: 54px;
  }
}

/* Homepage Story Section (imported from Mentoring page) */
.sojey-home-story {
  padding: 82px 0;
  background-color: #ffffff;
  position: relative;
  border-top: 1px solid rgba(32, 84, 81, 0.08);
  border-bottom: 1px solid rgba(32, 84, 81, 0.08);
}

.sojey-home-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 58px;
  align-items: center;
}

.sojey-home-story__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.sojey-home-story__kicker {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 750;
  color: var(--sojey-coral-strong, #ff8a66);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.sojey-home-story__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.3rem, 3.8vw, 3.4rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--sojey-teal-dark, #205451);
  margin-top: 0;
  margin-bottom: 24px;
  text-wrap: balance;
}

.sojey-home-story__copy p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.76;
  color: #3f5f5c;
  margin-top: 0;
  margin-bottom: 18px;
}

.sojey-home-story__tagline {
  font-size: clamp(1rem, 1.1vw, 1.15rem) !important;
  color: var(--sojey-teal-dark, #205451) !important;
  margin-top: 6px;
  margin-bottom: 28px !important;
}

.sojey-home-story__actions {
  margin-top: 8px;
}

.sojey-home-story__image {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(32, 84, 81, 0.1);
  border: 1px solid rgba(32, 84, 81, 0.06);
}

.sojey-home-story__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sojey-intro-video-section {
  padding-block: 92px;
  background-color: #eef6f7;
  background-image: url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-Green-Orange.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Responsive styles */
@media (max-width: 900px) {
  .sojey-home-story__grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .sojey-home-story {
    padding: 58px 0;
  }
  
  .sojey-home-story__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  
  .sojey-home-story__copy {
    align-items: center;
    text-align: center;
  }
  
  .sojey-home-story__title {
    margin-bottom: 20px;
  }
  
  .sojey-home-story__copy p {
    text-wrap: balance;
  }
  
  .sojey-home-story__image {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .sojey-intro-video-section {
    padding-block: 58px;
  }
}

/* Modal variables for Sojey child theme pages */
:root {
  --sojey-about-text: #205451;
  --sojey-about-line-strong: rgba(32, 84, 81, 0.16);
  --sojey-about-teal: #205451;
  --sojey-about-mint: #6AD3BC;
  --sojey-about-coral: #F55A29;
  --sojey-about-coral-soft: #FF8A66;
  --sojey-about-radius-lg: 28px;
}

/* Social Impact Section */
.sojey-social-impact {
  padding-block: 84px;
  background: radial-gradient(circle at 100% 100%, rgba(106, 211, 188, 0.05), transparent 40%),
              radial-gradient(circle at 0% 0%, rgba(255, 138, 102, 0.05), transparent 40%),
              #133230;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.sojey-social-impact__card {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  z-index: 2;
}

.sojey-social-impact__card .sojey-eyebrow {
  color: #ff8a66;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}

.sojey-social-impact__card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 auto 24px;
  max-width: 680px;
}

.sojey-social-impact__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: #ffffff !important;
  margin: 0 auto 20px;
  max-width: 720px;
}

.sojey-social-impact__subtext {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 34px;
}

.sojey-social-impact__actions {
  display: flex;
  justify-content: center;
}

.sojey-social-impact__actions .sojey-button {
  appearance: none;
  border: 0;
  padding: 16px 36px;
  background: #f55a29;
  color: #ffffff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(245, 90, 41, 0.3);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sojey-social-impact__actions .sojey-button:hover {
  background: #ff8a66;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(245, 90, 41, 0.45);
}

@media (max-width: 640px) {
  .sojey-social-impact {
    padding-block: 60px;
  }
  .sojey-social-impact__card {
    padding: 40px 24px;
    border-radius: 20px;
  }
}

/* About Modal (Copied for Home compatibility) */
.sojey-about-modal[hidden] {
  display: none !important;
}
.sojey-about-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
}
.sojey-about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 84, 81, 0.72);
  backdrop-filter: blur(8px);
}
.sojey-about-modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 760px);
  overflow: auto;
  background: #fff;
  color: var(--sojey-about-text);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 30px 90px rgba(32, 84, 81, 0.24);
  border-radius: var(--sojey-about-radius-lg);
}
.sojey-about-modal__dialog h2 {
  margin: 0 44px 20px 0;
  color: var(--sojey-about-teal);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.05;
}
.sojey-about-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--sojey-about-teal);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.sojey-about-modal__close:hover {
  background: var(--sojey-about-coral);
  transform: translateY(-1px);
}
.sojey-about-modal-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .sojey-about-modal {
    padding: 14px;
    align-items: start;
  }
  .sojey-about-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 20px;
  }
}

.sojey-about-modal__form .ff-el-group,
.sojey-about-modal__form label {
  color: var(--sojey-about-text);
  font-size: 0.95rem;
}
.sojey-about-modal__form input[type="text"],
.sojey-about-modal__form input[type="email"],
.sojey-about-modal__form textarea,
.sojey-about-modal__form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sojey-about-line-strong);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdfc;
  transition: border-color 0.2s;
}
.sojey-about-modal__form input:focus,
.sojey-about-modal__form textarea:focus,
.sojey-about-modal__form select:focus {
  outline: none;
  border-color: var(--sojey-about-mint);
}
.sojey-about-modal__form .ff-btn-submit,
.sojey-about-modal__form button[type="submit"] {
  width: 100% !important;
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--sojey-about-coral-soft) 0%, var(--sojey-about-coral) 100%) !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 20px rgba(245, 90, 41, 0.16) !important;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.sojey-about-modal__form .ff-btn-submit:hover,
.sojey-about-modal__form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245, 90, 41, 0.24) !important;
}

/* Ensure Fluent Forms Flatpickr datepicker calendar displays above the modal dialogues */
.flatpickr-calendar {
  z-index: 999999999 !important;
}
