:root {
  --navy: #00081F;
  --gold: #C99A4D;
  --gold-light: #DDAE5C;
  --white: #FFFFFF;
  --gray: #A7A9AC;
}

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

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
}

header {
  background-color: var(--navy);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

header .logo-area img {
  height: 60px;
  width: auto;
}

header .logo-area .brand-text {
  color: var(--gold-light);
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
}

nav a {
  color: var(--gold);
  text-decoration: none;
  margin-left: 30px;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: normal;
}

nav a:hover {
  color: var(--gold-light);
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

h1 {
  color: var(--navy);
  font-size: 42px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

h3 {
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  color: #333333;
  margin-bottom: 16px;
  font-size: 16px;
}

a {
  color: var(--gold);
  font-weight: 600;
}

a:hover {
  color: var(--gold-light);
}

form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.5px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
}

form textarea {
  min-height: 100px;
}

button[type="submit"] {
  margin-top: 30px;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: var(--gold-light);
}

footer {
  background-color: var(--navy);
  color: var(--gray);
  text-align: center;
  padding: 30px;
  margin-top: 60px;
  font-size: 13px;
  letter-spacing: 1px;
}

body {
  background-color: var(--navy);
  color: var(--white);
}

p {
  color: var(--gray);
}

h1, h3 {
  color: var(--white);
}

h3 {
  border-bottom: 2px solid var(--gold);
}

a:visited {
  color: var(--gold);
}

a:visited:hover {
  color: var(--gold-light);
}

form label {
  color: var(--gold);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.about-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 30px 40px;
  margin-top: 40px;
}

.about-section h3 {
  margin-top: 0;
}

ul {
  margin: 0 0 20px 20px;
  color: var(--gray);
}

ul li {
  margin-bottom: 8px;
}

.program-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.program-card {
  flex: 1;
  min-width: 240px;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 24px;
}

.program-card h4 {
  color: var(--gold-light);
  margin-bottom: 10px;
  font-size: 18px;
}

.corporate-cta {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 30px 40px;
  margin-top: 40px;
  text-align: center;
}

.corporate-cta h3 {
  border-bottom: none;
  margin-top: 0;
}

/* Book a Session page */
.book-hero .eyebrow {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.book-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.book-hero p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.session-type-label {
    text-align: center;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin: 40px 0 20px;
}

.session-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 40px 40px;
}

.session-card {
    flex: 1;
    min-width: 280px;
    border: 1px solid var(--gray);
    border-top: 3px solid var(--gold);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.session-card h2 {
    margin-bottom: 12px;
}

.session-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--navy) !important;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    margin: 6px 0;
}

.btn-gold:hover {
    background-color: var(--gold-light);
}

.features-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 40px;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.feature-item {
    text-align: center;
    max-width: 200px;
    margin: 10px;
}

.feature-item h4 {
    color: var(--gold);
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--gray);
    font-size: 14px;
}

.book-cta-banner {
    background-color: rgba(201, 154, 77, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 30px 40px;
    margin: 40px;
    text-align: center;
}

.book-cta-banner h3 {
    margin-bottom: 8px;
}

.booking-form-section {
    padding: 0 40px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.book-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 60px 40px;
    overflow: hidden;
    background-color: var(--navy);
}

.book-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 55%;
}

.book-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    -webkit-mask-image: linear-gradient(to right, transparent, black 25%);
    mask-image: linear-gradient(to right, transparent, black 25%);
}

.book-hero-text {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.book-hero-text h1,
.book-hero-text p,
.book-hero-text .eyebrow {
    color: var(--white);
}

.promo-banner {
    background-color: rgba(201, 154, 77, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    padding: 30px 40px;
    margin: 40px;
    text-align: center;
}

.promo-banner h3 {
    margin-bottom: 8px;
}

.promo-banner p {
    color: var(--gray);
    margin-bottom: 16px;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    color: var(--gold);
    font-size: 32px;
    margin: 4px 0 16px;
}

.gold-line {
    border: none;
    border-top: 1px solid var(--gold);
    width: 60px;
    margin: 20px 0;
}

.card-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-icon {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 8px;
}

.features-row {
    border-left: none;
    border-right: none;
}

.feature-item {
    border-right: 1px solid rgba(167, 169, 172, 0.3);
    padding: 0 20px;
}

.feature-item:last-child {
    border-right: none;
}

.book-cta-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: left;
}

.cta-left .tagline-inline {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: var(--gold);
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-badge {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: bold;
    font-size: 12px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s, border-color 0.2s;
}

.service-card-link:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
}

.service-price {
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 12px;
}

.academy-section {
    padding: 60px 40px;
    text-align: center;
    background-color: rgba(201, 154, 77, 0.04);
}

.academy-header h2 {
    font-size: 36px;
    margin: 8px 0;
}

.academy-header .tagline {
    font-family: 'Dancing Script', cursive;
    color: var(--gold);
    font-size: 28px;
    margin: 4px 0 16px;
}

.academy-intro {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

.academy-journey {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.journey-step {
    max-width: 220px;
}

.journey-number {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}

.journey-step h4 {
    margin-bottom: 8px;
}

.journey-step p {
    color: var(--gray);
    font-size: 14px;
}

.academy-courses {
    margin-bottom: 50px;
}

.academy-courses h3 {
    margin-bottom: 20px;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.course-tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
}

.academy-cta h3 {
    margin-bottom: 16px;
}

.movement-section {
    padding: 60px 40px;
    text-align: center;
    background-color: var(--navy);
    color: var(--white);
}

.movement-eyebrow {
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 8px;
}

.movement-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.movement-headline {
    color: var(--gold-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 8px;
}

.movement-subtext {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.movement-countdown {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 12px 28px;
    margin-bottom: 50px;
    font-size: 14px;
}

.movement-countdown strong {
    color: var(--gold);
    font-size: 18px;
}

.movement-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.movement-card {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    background: linear-gradient(160deg, rgba(201,154,77,0.1), rgba(255,255,255,0.02));
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.movement-card-label {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.movement-card h3 {
    margin-bottom: 12px;
}

.movement-dates {
    color: var(--gray);
    margin-bottom: 16px;
}

.movement-goals {
    margin: 0 0 16px 20px;
    color: var(--white);
}

.movement-goals li {
    margin-bottom: 6px;
}

.movement-card-tagline {
    font-family: 'Dancing Script', cursive;
    color: var(--gold-light);
    font-size: 24px;
    margin-bottom: 20px;
}

.movement-week {
    margin-bottom: 14px;
}

.movement-week strong {
    color: var(--gold-light);
    display: block;
    margin-bottom: 2px;
}

.movement-week p {
    color: var(--gray);
    font-size: 14px;
}

.movement-bonus {
    color: var(--gold);
    margin: 16px 0 20px;
}

:root {
    --skyblue: #7EC8E3;
}

.movement-hero {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%);
  border-radius: 16px;
  overflow: hidden;
  min-height: 500px;
}

.movement-hero-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  height: 450px;
  align-self: center; 
}

.movement-hero-image img {
  width: 100%;
  height: 100%;
  Max height: 650px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.movement-hero-text {
  flex: 1;
  color: #ffffff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

/* ===== SHOP PAGE ===== */

.shop-hero {
  text-align: center;
  padding: 80px 20px 50px;
  color: #ffffff;
}

.shop-hero-eyebrow {
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.shop-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 15px;
  background: linear-gradient(180deg, #e8e8e8, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-hero-subtitle {
  color: #8ab4d8;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.shop-hero-tagline {
  font-size: 1.8rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.shop-hero-note {
  color: #cccccc;
  font-style: italic;
}

.shop-tiles {
  display: flex;
  gap: 25px;
  padding: 30px 40px 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.shop-tile {
  position: relative;
  width: 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shop-tile:hover {
  transform: translateY(-6px);
}

.shop-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-tile-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.1) 0%, rgba(10,14,26,0.85) 100%);
}

.shop-tile-wear .shop-tile-overlay {
  background: linear-gradient(180deg, rgba(10,14,26,0.2) 0%, rgba(20,20,30,0.9) 100%);
}

.shop-tile-fuel .shop-tile-overlay {
  background: linear-gradient(180deg, rgba(10,30,40,0.15) 0%, rgba(10,20,30,0.9) 100%);
}

.shop-tile-equip .shop-tile-overlay {
  background: linear-gradient(180deg, rgba(20,20,20,0.25) 0%, rgba(5,5,5,0.92) 100%);
}

.shop-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  text-align: center;
  color: #ffffff;
}

.shop-tile-label {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.shop-tile-collection {
  display: block;
  color: #8ab4d8;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.shop-tile-status {
  display: inline-block;
  border: 1px solid #d4af37;
  color: #d4af37;
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.shop-waitlist {
  text-align: center;
  padding: 60px 20px 80px;
  color: #ffffff;
}

.shop-waitlist h3 {
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.shop-waitlist p {
  color: #8ab4d8;
  margin-bottom: 25px;
}

.shop-waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-waitlist-form input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  min-width: 220px;
}

.notify-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.notify-modal-box {
  background: #0d1526;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 40px;
  width: 90%;
  max-width: 400px;
  position: relative;
  color: #ffffff;
  text-align: center;
}

.notify-modal-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.notify-modal-box input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
}

.notify-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #999;
}

/* ===== ABOUT PAGE ===== */

.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90vh;
  padding: 60px 60px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%);
  gap: 40px;
}

.about-hero-text {
  flex: 1;
  color: #ffffff;
}

.about-hero-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 25px;
  background: linear-gradient(180deg, #e8e8e8, #a8a8a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-tagline {
  font-size: 1.3rem;
  color: #8ab4d8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-hero-founder {
  color: #cccccc;
  letter-spacing: 2px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 35px;
}

.about-hero-cta {
  display: inline-block;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.about-hero-cta:hover {
  background: #d4af37;
  color: #0a0e1a;
}

.about-hero-image {
  flex: 0 0 45%;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-woman {
  padding: 100px 60px;
  background: #0d1526;
  display: flex;
  justify-content: center;
}

.about-woman-text-full {
  max-width: 720px;
  text-align: center;
  color: #ffffff;
}

.about-woman-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-woman-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.about-woman-title {
  color: #8ab4d8;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.about-woman-bio {
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-woman-cta {
  color: #d4af37;
  text-decoration: none;
  letter-spacing: 1px;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 3px;
}

/* ===== ABOUT PAGE — WHY BLU + STANDARD ===== */

.about-why {
  background: #0a0e1a;
  padding: 120px 60px;
  text-align: center;
}

.about-why-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.about-why-statement {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 35px;
}

.about-why-body {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.blu-highlight {
  color: #8ab4d8;
  font-weight: 600;
}

.blu-standard {
  background: #f4f4f2;
  padding: 100px 60px;
}

.blu-standard-header {
  text-align: center;
  margin-bottom: 60px;
}

.blu-standard-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a0e1a;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.blu-standard-header p {
  color: #555555;
  font-size: 1.1rem;
}

.blu-standard-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.blu-standard-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.blu-standard-card:hover {
  transform: translateY(-6px);
  border-color: #8ab4d8;
}

.blu-standard-num {
  display: block;
  color: #d4af37;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.blu-standard-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0a0e1a;
  margin: 0 0 12px;
}

.blu-standard-card p {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== ABOUT PAGE — BE BLU + MEET YOUR COACH ===== */

.be-blu {
  background: #0a0e1a;
  padding: 140px 60px;
  text-align: center;
  overflow: hidden;
}

.be-blu-text {
  margin-bottom: 40px;
}

.be-blu-line {
  display: block;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 8px;
}

.be-blu-huge {
  display: block;
  color: #8ab4d8;
  font-size: 9rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
}

.be-blu-tagline {
  color: #cccccc;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-bottom: 60px;
}

.be-blu-letters {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.be-blu-letter {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 1px;
}

.be-blu-letter span {
  color: #d4af37;
  font-size: 1.8rem;
  font-weight: 800;
  margin-right: 8px;
}

.meet-coach {
  display: flex;
  align-items: center;
  background: #0d1526;
  min-height: 700px;
}

.meet-coach-image {
  flex: 0 0 55%;
  height: 700px;
  overflow: hidden;
}

.meet-coach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.meet-coach-text {
  flex: 1;
  padding: 60px;
  color: #ffffff;
}

.meet-coach-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.meet-coach-name {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 20px;
}

.meet-coach-title {
  color: #8ab4d8;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.meet-coach-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 35px;
  border-left: 2px solid #d4af37;
  padding-left: 15px;
}

.meet-coach-cta {
  display: inline-block;
  color: #0a0e1a;
  background: #d4af37;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.meet-coach-cta:hover {
  opacity: 0.85;
}

/* ===== ABOUT PAGE — BLU WORLD, PHILOSOPHY, CTA ===== */

.blu-world {
  background: #0a0e1a;
  padding: 90px 60px;
}

.blu-world-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

.blu-world-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.blu-world-header p {
  color: #8ab4d8;
}

.blu-world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.blu-world-tile {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.blu-world-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blu-world-tile:hover img {
  transform: scale(1.06);
}

.blu-world-tile::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.05) 0%, rgba(10,14,26,0.75) 100%);
}

.blu-world-tile-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
}

@media (max-width: 900px) {
  .blu-world-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blu-philosophy {
  background: #f4f4f2;
  padding: 130px 60px;
  text-align: center;
}

.blu-philosophy-eyebrow {
  display: block;
  color: #555555;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.blu-philosophy-statement {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0a0e1a;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.25;
}

.blu-philosophy-sub {
  color: #0a0e1a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.blu-philosophy-body {
  color: #666666;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-cta {
  background: #0a0e1a;
  padding: 110px 60px;
  text-align: center;
  color: #ffffff;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.about-cta p {
  color: #8ab4d8;
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta-primary {
  background: #d4af37;
  color: #0a0e1a;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-cta-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .blu-world-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blu-hero { text-align: center; padding: 100px 60px 60px; background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%); color: #fff; }
.blu-hero-eyebrow { display: block; color: #d4af37; letter-spacing: 4px; font-size: .85rem; text-transform: uppercase; margin-bottom: 20px; }
.blu-hero-title { font-size: 3.2rem; font-weight: 800; max-width: 800px; margin: 0 auto 20px; line-height: 1.2; }
.blu-hero-services { color: #8ab4d8; letter-spacing: 1px; margin-bottom: 35px; }
.blu-hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.btn-outline { border: 1px solid #fff; color: #fff; padding: 14px 32px; border-radius: 30px; text-decoration: none; letter-spacing: 1px; }
.blu-hero-ticker { color: #666; letter-spacing: 2px; font-size: .8rem; }
.this-week { background: #0d1526; padding: 80px 60px; }
.this-week-header { text-align: center; color: #fff; margin-bottom: 50px; }
.this-week-header h2 { font-size: 2.2rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 15px; }
.this-week-header p { color: #8ab4d8; max-width: 600px; margin: 0 auto; }
.this-week-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.this-week-card { background: #0a0e1a; border: 1px solid rgba(212,175,55,.2); border-radius: 14px; padding: 30px; text-decoration: none; display: block; transition: transform .3s ease; }
.this-week-card:hover { transform: translateY(-6px); }
.this-week-icon { font-size: 2rem; display: block; margin-bottom: 15px; }
.this-week-label { color: #d4af37; font-size: .75rem; letter-spacing: 1.5px; display: block; margin-bottom: 10px; }
.this-week-card h3 { color: #fff; font-size: 1.3rem; margin: 0 0 8px; }
.this-week-card p { color: #ccc; font-size: .9rem; margin-bottom: 15px; }
.this-week-link { color: #8ab4d8; font-size: .85rem; letter-spacing: 1px; }
@media (max-width: 900px) { .this-week-cards { grid-template-columns: 1fr; } }

.nutrition-hero {
  text-align: center;
  padding: 100px 60px 80px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%);
  color: #ffffff;
}
.nutrition-hero-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.nutrition-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.nutrition-hero-sub {
  color: #8ab4d8;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.nutrition-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.nutrition-hero-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.nutrition-hero-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
}
.nutrition-hero-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 18px;
}
.nutrition-hero-card h3 {
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.nutrition-hero-card p {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.nutrition-hero-link {
  color: #8ab4d8;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.nutrition-goal {
  background: #0d1526;
  padding: 80px 60px;
  text-align: center;
}
.nutrition-goal-header h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.nutrition-goal-header p {
  color: #8ab4d8;
  max-width: 600px;
  margin: 0 auto 45px;
}
.nutrition-goal-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.goal-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138, 180, 216, 0.3);
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.goal-btn:hover {
  border-color: #d4af37;
}
.goal-btn.active {
  background: #d4af37;
  color: #0a0e1a;
  border-color: #d4af37;
  font-weight: 700;
}
.nutrition-goal-result {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 40px;
}
.nutrition-goal-result h3 {
  color: #d4af37;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.nutrition-goal-result p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 900px) {
  .nutrition-hero-cards {
    grid-template-columns: 1fr;
  }
}

.calc-hero {
  text-align: center;
  padding: 100px 60px 50px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%);
  color: #ffffff;
}
.calc-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.calc-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 15px;
}
.calc-hero p {
  color: #8ab4d8;
}
.calc-wrap {
  background: #0d1526;
  padding: 60px;
  max-width: 700px;
  margin: 0 auto;
}
.calc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.calc-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(138, 180, 216, 0.4);
  color: #8ab4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.calc-dot.active {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0e1a;
  font-weight: 700;
}
.calc-line {
  width: 50px;
  height: 1px;
  background: rgba(138, 180, 216, 0.3);
}
.calc-step {
  display: none;
}
.calc-step.active {
  display: block;
}
.calc-step h2 {
  color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
}
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}
.calc-grid label {
  display: flex;
  flex-direction: column;
  color: #8ab4d8;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  gap: 8px;
}
.calc-grid label.calc-full {
  grid-column: 1 / -1;
}
.calc-grid input, .calc-grid select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(138, 180, 216, 0.3);
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.95rem;
}
.calc-goal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 35px;
}
.calc-radio {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(138, 180, 216, 0.3);
  border-radius: 12px;
  padding: 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.calc-btn-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.calc-next, #calc-submit {
  width: 100%;
}
.calc-back {
  flex-shrink: 0;
}
.calc-results {
  background: #0d1526;
  padding: 20px 60px 80px;
  text-align: center;
}
.calc-results h2 {
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 50px;
}
.snapshot-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.snapshot-label {
  color: #8ab4d8;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.snapshot-value {
  color: #d4af37;
  font-size: 1.4rem;
  font-weight: 800;
}
.calc-next-step {
  max-width: 500px;
  margin: 0 auto;
}
.calc-next-step h3 {
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.calc-next-step p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media (max-width: 700px) {
  .calc-grid, .calc-goal-options {
    grid-template-columns: 1fr;
  }
  .snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-wrap {
    padding: 40px 24px;
  }
}

/* ===== BUILD YOUR BLU PLATE ===== */

.blu-plate {
  background: linear-gradient(180deg, #0a0e1a 0%, #0d1526 100%);
  padding: 100px 60px;
}

.blu-plate-header {
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 60px;
}

.blu-plate-eyebrow {
  display: block;
  color: #d4af37;
  letter-spacing: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blu-plate-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.blu-plate-header p {
  color: #8ab4d8;
  font-size: 1.05rem;
}

.blu-plate-builder {
  max-width: 1200px;
  margin: 0 auto;
}

.blu-plate-group {
  margin-bottom: 55px;
}

.blu-plate-group h3 {
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 22px;
  padding-left: 4px;
  border-left: 3px solid #8ab4d8;
  padding-left: 12px;
}

.blu-plate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.plate-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.plate-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 180, 216, 0.5);
  box-shadow: 0 10px 30px rgba(138, 180, 216, 0.15);
}

.plate-card.selected {
  border-color: #8ab4d8;
  box-shadow: 0 0 0 2px #8ab4d8, 0 10px 30px rgba(138, 180, 216, 0.3);
  background: rgba(138, 180, 216, 0.08);
}

.plate-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 12px;
  transition: transform 0.25s ease;
}

.plate-card:hover .plate-card-icon {
  transform: scale(1.08);
}

.plate-card-info h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.plate-card-serving {
  display: block;
  color: #888888;
  font-size: 0.72rem;
  margin-bottom: 4px;
}

.plate-card-macros {
  display: block;
  color: #8ab4d8;
  font-size: 0.7rem;
  letter-spacing: 0.3px;
}

.plate-card-overlay {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.92);
  color: #d4af37;
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 8px;
  text-align: center;
  transition: bottom 0.25s ease;
}

.plate-card:hover .plate-card-overlay {
  bottom: 0;
}

.plate-card-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #8ab4d8;
  color: #0a0e1a;
  font-size: 0.75rem;
  font-weight: 900;
  display: none;
  align-items: center;
  justify-content: center;
}

.plate-card.selected .plate-card-check {
  display: flex;
}

.your-blu-plate {
  max-width: 900px;
  margin: 70px auto 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
}

.your-blu-plate h3 {
  color: #ffffff;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-align: center;
}

.your-plate-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 30px;
  min-height: 30px;
}

.your-plate-empty {
  color: #666666;
  font-size: 0.9rem;
}

.your-plate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(138, 180, 216, 0.1);
  border: 1px solid rgba(138, 180, 216, 0.3);
  border-radius: 30px;
  padding: 8px 10px 8px 16px;
  color: #ffffff;
  font-size: 0.85rem;
}

.your-plate-item-category {
  color: #d4af37;
  font-size: 0.65rem;
  letter-spacing: 1px;
}

.your-plate-item-remove {
  background: none;
  border: none;
  color: #cccccc;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
}

.your-plate-item-remove:hover {
  color: #ff6b6b;
}

.blu-plate-totals {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.blu-plate-totals div {
  text-align: center;
}

.blu-plate-totals span {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
}

.blu-plate-totals label {
  color: #8ab4d8;
  font-size: 0.75rem;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .blu-plate {
    padding: 70px 24px;
  }
  .blu-plate-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

/* ===== BLU PLATE V2 — GOALS, DASHBOARD, PORTIONS ===== */

.blu-plate-goal-select {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.blu-plate-goal-label {
  display: block;
  color: #8ab4d8;
  letter-spacing: 2px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.blu-plate-goal-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.goal-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: #cccccc;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.goal-btn:hover {
  border-color: #d4af37;
  color: #ffffff;
}

.goal-btn.selected {
  background: #d4af37;
  border-color: #d4af37;
  color: #0a0e1a;
  font-weight: 700;
}

.your-blu-plate-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.reset-plate-btn {
  background: none;
  border: 1px solid #d4af37;
  color: #d4af37;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.reset-plate-btn:hover {
  background: #d4af37;
  color: #0a0e1a;
}

.plate-visual {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.plate-visual-empty {
  color: #666666;
  font-size: 0.9rem;
}

.plate-visual-ring {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,180,216,0.08) 0%, transparent 70%);
}

.plate-visual-chip {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.portion-stepper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.portion-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: none;
  color: #ffffff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.portion-btn:hover {
  border-color: #8ab4d8;
  color: #8ab4d8;
}

.portion-value {
  color: #cccccc;
  font-size: 0.75rem;
  min-width: 55px;
  text-align: center;
}

.blu-plate-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 10px;
}

.dash-item {
  text-align: center;
}

.dash-num {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 800;
}

.dash-item label {
  color: #8ab4d8;
  font-size: 0.72rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.dash-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 6px;
}

.dash-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #8ab4d8, #d4af37);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 10px;
}

.dash-goal {
  color: #666666;
  font-size: 0.68rem;
}

.goal-fit-summary {
  text-align: center;
  color: #cccccc;
  font-size: 0.85rem;
  margin-top: 22px;
  font-style: italic;
}

.plate-action-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.plate-action-btn {
  background: #d4af37;
  border: 1px solid #d4af37;
  color: #0a0e1a;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.plate-action-btn:hover {
  opacity: 0.85;
}

.blu-plate-cta {
  text-align: center;
  max-width: 650px;
  margin: 70px auto 0;
  color: #ffffff;
}

.blu-plate-cta h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.blu-plate-cta p {
  color: #8ab4d8;
  line-height: 1.6;
  margin-bottom: 25px;
}

@media (min-width: 1000px) {
  .your-blu-plate {
    position: sticky;
    top: 20px;
  }
}

@media (max-width: 700px) {
  .blu-plate-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
  .blu-plate-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
  }
  .blu-plate-grid .plate-card {
    flex: 0 0 140px;
  }
  .your-plate-item {
    flex-wrap: wrap;
  }
  .portion-stepper {
    margin-left: 0;
  }
}

/* ===== CORPORATE HERO ===== */

.corp-hero {
  text-align: center;
  padding: 110px 60px 80px;
  background: linear-gradient(135deg, #0a0e1a 0%, #0d1526 60%, #0a1220 100%);
  color: #ffffff;
}

.corp-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  max-width: 850px;
  margin: 0 auto 25px;
  line-height: 1.2;
}

.corp-hero-sub {
  color: #8ab4d8;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.corp-hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.corp-hero-btn {
  border: 1px solid #8ab4d8;
  color: #8ab4d8;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.corp-hero-btn:hover {
  background: #8ab4d8;
  color: #0a0e1a;
}

.corp-hero-cta {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid #d4af37;
  padding-bottom: 3px;
}

/* ===== WHAT CAN BLU DO — OFFER GRID ===== */

.corp-offer-grid {
  background: #0d1526;
  padding: 90px 60px;
}

.corp-offer-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 55px;
}

.corp-offer-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  max-width: 700px;
  margin: 0 auto;
}

.corp-offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.corp-offer-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 34px 28px;
  color: #ffffff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.corp-offer-card:hover {
  transform: translateY(-6px);
  border-color: #8ab4d8;
}

.corp-offer-card-resort {
  background: linear-gradient(160deg, rgba(212,175,55,0.1), rgba(255,255,255,0.04));
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.corp-offer-card-resort:hover {
  border-color: #d4af37;
}

.corp-offer-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

.corp-offer-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.corp-offer-tagline {
  color: #8ab4d8;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.corp-offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.corp-offer-card ul li {
  color: #cccccc;
  font-size: 0.85rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.corp-offer-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.corp-offer-card-resort .corp-offer-link {
  font-weight: 700;
}

@media (max-width: 900px) {
  .corp-offer-cards {
    grid-template-columns: 1fr;
  }
  .corp-hero-title {
    font-size: 2.2rem;
  }
}

/* ===== BLU WELLNESS MENU ===== */

.wellness-menu {
  background: #0a0e1a;
  padding: 90px 60px;
}

.wellness-menu-header {
  text-align: center;
  color: #ffffff;
  margin-bottom: 45px;
}

.wellness-menu-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.wellness-menu-header p {
  color: #8ab4d8;
}

.wellness-menu-categories {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wellness-category {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
}

.wellness-category-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  text-align: left;
}

.wellness-category-icon {
  font-size: 1.5rem;
}

.wellness-category-name {
  flex: 1;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.wellness-category-arrow {
  color: #d4af37;
  transition: transform 0.3s ease;
}

.wellness-category.open .wellness-category-arrow {
  transform: rotate(180deg);
}

.wellness-category-items {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wellness-category.open .wellness-category-items {
  max-height: 300px;
  padding: 0 24px 24px;
}

.wellness-category-items span {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-size: 0.8rem;
  padding: 7px 14px;
  border-radius: 20px;
}

/* ============================
   CHOOSE YOUR EXPERIENCE SECTION
   ============================ */

.choose-experience {
  background: #050b14; /* deep BLU background */
  padding: 100px 6vw;
  position: relative;
}

.choose-experience-header {
  text-align: center;
  margin-bottom: 60px;
}

.choose-experience-header h2 {
  color: #f4f7fa; /* matte white */
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Grid of tiles */
.choose-experience {
  display: block;
}

.choose-experience .experience-tile {
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Individual tile (accordion card) */
.experience-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.experience-tile:hover {
  border-color: rgba(87, 197, 255, 0.4); /* sky-blue accent */
  background: rgba(255, 255, 255, 0.06);
}

/* Toggle button (tile header — always visible) */
.experience-tile-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 28px;
  text-align: left;
  font-family: inherit;
}

.experience-tile-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.experience-tile-name {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.experience-tile-tagline {
  color: #9fb3c8; /* muted blue-grey */
  font-size: 0.95rem;
  font-weight: 400;
  margin-left: auto;
  text-align: right;
}

/* Arrow indicator using ::after on the toggle button */
.experience-tile-toggle::after {
  content: "+";
  color: #57c5ff;
  font-size: 1.4rem;
  font-weight: 300;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.experience-tile.open .experience-tile-toggle::after {
  content: "\2212"; /* minus sign */
  transform: rotate(180deg);
}

/* Expandable panel */
.experience-tile-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.experience-tile.open .experience-tile-panel {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 26px 28px;
}

.experience-tile-panel p {
  color: #c7d5e2;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.experience-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #57c5ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.experience-tile-link:hover {
  color: #8adcff;
  gap: 10px;
}

/* Responsive: stack tagline under name on small screens */
@media (max-width: 640px) {
  .experience-tile-toggle {
    flex-wrap: wrap;
    gap: 8px;
  }
  .experience-tile-tagline {
    margin-left: 0;
    text-align: left;
    width: 100%;
    order: 3;
  }
}

/* ============================
   SIDE-BY-SIDE: EXPERIENCE + WELLNESS MENU
   ============================ */

.experience-menu-row {
/* ============================
   SIDE-BY-SIDE: EXPERIENCE + WELLNESS MENU
   ============================ */

.experience-menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  padding: 80px 4vw;
}

.experience-menu-row .choose-experience,
.experience-menu-row .wellness-menu {
  padding: 0; /* row wrapper now owns the outer padding */
  /* no max-height / no overflow — let content show in full */
}

/* Fix text wrapping inside tiles now that columns are narrower */
.experience-menu-row .experience-tile-toggle,
.experience-menu-row .wellness-category-toggle {
  flex-wrap: wrap;
  row-gap: 6px;
}

.experience-menu-row .experience-tile-name,
.experience-menu-row .wellness-category-name {
  white-space: normal;
  flex-shrink: 1;
}

.experience-menu-row .experience-tile-tagline {
  margin-left: 0;
  text-align: left;
  width: 100%;
  order: 3;
  font-size: 0.85rem;
}

/* Stack into one column on smaller screens */
@media (max-width: 900px) {
  .experience-menu-row {
    grid-template-columns: 1fr;
  }
}  gap: 32px;
  align-items: start;
  padding: 80px 4vw;
}

.experience-menu-row .choose-experience,
.experience-menu-row .wellness-menu {
  padding: 0; /* row wrapper now owns the outer padding */
  max-height: 640px;
  overflow-y: auto;
}

/* Slim custom scrollbar so it doesn't look like a stray browser scrollbar */
.experience-menu-row .choose-experience::-webkit-scrollbar,
.experience-menu-row .wellness-menu::-webkit-scrollbar {
  width: 5px;
}
.experience-menu-row .choose-experience::-webkit-scrollbar-thumb,
.experience-menu-row .wellness-menu::-webkit-scrollbar-thumb {
  background: rgba(87, 197, 255, 0.3);
  border-radius: 10px;
}

/* Stack on smaller screens instead of squeezing two columns */
@media (max-width: 900px) {
  .experience-menu-row {
    grid-template-columns: 1fr;
  }
  .experience-menu-row

/* ============================
   AVAILABLE FORMATS — CLICKABLE CHIPS
   ============================ */

.format-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.format-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #c7d5e2;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.format-chip:hover {
  border-color: rgba(87, 197, 255, 0.5);
  color: #f4f7fa;
  transform: translateY(-1px);
}

.format-chip.active {
  background: #57c5ff;
  border-color: #57c5ff;
  color: #050b14;
}

<script>
document.querySelectorAll(".format-chip").forEach(chip => {
  chip.addEventListener("click", () => {
    chip.classList.toggle("active");
  });
});
</script>

/* ============================
   TRANSFORMATIONS — HERO
   ============================ */

.transform-hero {
  background: #050b14;
  padding: 140px 6vw 90px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.transform-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.transform-hero h1 {
  color: #f4f7fa;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.transform-hero-sub {
  color: #9fb3c8;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px auto;
}

.transform-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.transform-btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.transform-btn-primary {
  background: #57c5ff;
  color: #050b14;
}
.transform-btn-primary:hover {
  transform: translateY(-2px);
  background: #8adcff;
}

.transform-btn-secondary {
  background: transparent;
  color: #f4f7fa;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.transform-btn-secondary:hover {
  border-color: #57c5ff;
  color: #57c5ff;
}

.transform-hero-stats {
  color: #c7d5e2;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.transform-hero-stats strong {
  color: #57c5ff;
  font-size: 1rem;
}

.transform-hero-stats .dot {
  color: rgba(255, 255, 255, 0.3);
}

/* ============================
   FEATURED TRANSFORMATION — CLIENT CARDS
   ============================ */

.featured-transformation {
  background: #050b14;
  padding: 100px 6vw;
}

.featured-transformation-header {
  text-align: center;
  margin-bottom: 60px;
}

.featured-transformation-header h2 {
  color: #f4f7fa;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.featured-transformation-sub {
  color: #57c5ff;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.client-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.client-card:hover {
  border-color: rgba(87, 197, 255, 0.4);
  transform: translateY(-4px);
}

.client-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.client-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card-body {
  padding: 28px;
}

.client-card-body h3 {
  color: #f4f7fa;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.client-card-tag {
  color: #9fb3c8;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-top: 4px;
  margin-bottom: 20px;
}

.client-card-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.progress-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #57c5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #57c5ff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.client-card-week-label {
  color: #c7d5e2;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.client-card-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.client-card-stats li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.stat-label {
  color: #9fb3c8;
}

.stat-value {
  color: #f4f7fa;
  font-weight: 600;
}

.client-card-cta {
  display: inline-block;
  color: #57c5ff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.client-card-cta:hover {
  color: #8adcff;
}

/* Stack on mobile */
@media (max-width: 800px) {
  .client-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   THE 8-WEEK JOURNEY — TIMELINE
   ============================ */

.journey-timeline {
  background: #0a1420;
  padding: 100px 6vw;
}

.journey-header {
  text-align: center;
  margin-bottom: 50px;
}

.journey-header h2 {
  color: #f4f7fa;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.week-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 50px;
  scrollbar-width: thin;
}

.week-tabs::-webkit-scrollbar {
  height: 4px;
}
.week-tabs::-webkit-scrollbar-thumb {
  background: rgba(87, 197, 255, 0.3);
  border-radius: 10px;
}

.week-tab {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #c7d5e2;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.week-tab:hover {
  border-color: rgba(87, 197, 255, 0.5);
  color: #f4f7fa;
}

.week-tab.active {
  background: #57c5ff;
  border-color: #57c5ff;
  color: #050b14;
}

.week-panels {
  max-width: 640px;
  margin: 0 auto;
}

.week-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}

.week-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.week-panel h3 {
  color: #f4f7fa;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 24px;
}

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

.week-panel li {
  color: #c7d5e2;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

.week-panel li:last-child {
  border-bottom: none;
}


/* ============================
   WATCH THE TRANSFORMATION — BEFORE/AFTER SLIDER
   ============================ */

.watch-transformation {
  background: #050b14;
  padding: 100px 6vw;
}

.slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-slider-wrap {
  text-align: center;
}

.ba-slider-name {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-img-before,
.ba-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.ba-img-after-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid #57c5ff;
}

.ba-img-after-wrap .ba-img-after {
  width: var(--slider-img-width, 100%);
  max-width: none;
}

/* Ensure the "after" image doesn't shrink with its clipped wrapper */
.ba-slider .ba-img-after {
  width: 100%;
}
.ba-slider {
  --slider-full-width: 100%;
}
.ba-img-after-wrap .ba-img-after {
  width: 100vw;
  max-width: 100%;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: #57c5ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(87, 197, 255, 0.25);
}

.ba-handle::before {
  content: "↔";
  color: #050b14;
  font-weight: 900;
  font-size: 1rem;
}

.ba-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  -webkit-appearance: none;
}

.ba-label {
  position: absolute;
  top: 14px;
  background: rgba(5, 11, 20, 0.7);
  color: #f4f7fa;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
}

.ba-label-before {
  left: 14px;
}

.ba-label-after {
  right: 14px;
}

@media (max-width: 800px) {
  .slider-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   THEIR JOURNEY — TRANSFORMATION DASHBOARD
   ============================ */

.transform-dashboard {
  background: #0a1420;
  padding: 100px 6vw;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.dashboard-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.dashboard-card:hover {
  border-color: rgba(87, 197, 255, 0.4);
  transform: translateY(-3px);
}

.dashboard-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 12px;
}

.dashboard-num {
  display: inline-block;
  color: #57c5ff;
  font-size: 2.2rem;
  font-weight: 800;
}

.dashboard-suffix-pct {
  color: #57c5ff;
  font-size: 2.2rem;
  font-weight: 800;
}

.dashboard-label {
  display: block;
  color: #c7d5e2;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   MORE THAN A PHYSICAL TRANSFORMATION — EXPAND TILES
   ============================ */

.more-than-physical {
  background: #050b14;
  padding: 100px 6vw;
}

.expand-tile-row {
  display: flex;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  height: 420px;
}

.expand-tile {
  position: relative;
  flex: 1;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
}

.expand-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 11, 20, 0.9) 0%, rgba(5, 11, 20, 0.3) 50%, rgba(5, 11, 20, 0.5) 100%);
  transition: background 0.4s ease;
}

.expand-tile:hover,
.expand-tile.tile-open {
  flex: 3;
}

.expand-tile-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 1;
}

.expand-tile-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

.expand-tile-content h3 {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  white-space: nowrap;
}

.expand-tile-content p {
  color: #c7d5e2;
  font-size: 0.85rem;
  line-height: 1.5;
  max-width: 260px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
}

.expand-tile:hover .expand-tile-content p,
.expand-tile.tile-open .expand-tile-content p {
  opacity: 1;
  transform: translateY(0);
}

/* Stack vertically on mobile instead of squeezing 5 flex columns */
@media (max-width: 800px) {
  .expand-tile-row {
    flex-direction: column;
    height: auto;
  }
  .expand-tile {
    height: 90px;
    transition: height 0.4s ease;
  }
  .expand-tile:hover,
  .expand-tile.tile-open {
    height: 220px;
  }
}

/* ============================
   TRANSFORMATION STORIES
   ============================ */

.transform-stories {
  background: #0a1420;
  padding: 100px 6vw;
}

.story-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease;
}

.story-card:hover {
  border-color: rgba(87, 197, 255, 0.4);
}

.story-card h3 {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.story-quote {
  color: #c7d5e2;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media (max-width: 700px) {
  .story-card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================
   BLU HALL OF TRANSFORMATIONS
   ============================ */

.hall-of-transformations {
  background: #050b14;
  padding: 100px 6vw;
}

.hall-archive {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.hall-year {
  color: #57c5ff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hall-month-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hall-month-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c7d5e2;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hall-month-item:hover {
  border-color: rgba(87, 197, 255, 0.4);
}

.hall-month-active {
  background: rgba(87, 197, 255, 0.08);
  border-color: #57c5ff;
  color: #f4f7fa;
}

.hall-status {
  font-size: 0.75rem;
  color: #57c5ff;
  letter-spacing: 0.04em;
}

.hall-detail {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.hall-detail h4 {
  color: #f4f7fa;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.hall-detail p {
  color: #c7d5e2;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hall-detail-placeholder {
  color: #9fb3c8;
  font-style: italic;
}
