/* ═══════════════════════════════════════════════
   YDJ 2027 — CSS Variables & Reset
═══════════════════════════════════════════════ */
:root {
  --ydj-red:     #F9363E;
  --ydj-coral:   #FF705F;
  --ydj-yellow:  #FCD072;
  --ydj-green:   #70DBD7;
  --ydj-blue:    #7C98E6;
  --ydj-offwhite:#F9F9F9;
  --ydj-dark:    #222222;
  --ydj-gray:    #333333;
  --ydj-light:   #FFFFFF;

  --font-head:   'Bricolage Grotesque', sans-serif;
  --font-body:   'IBM Plex Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ydj-dark);
  background: #F9F9F9;
  overflow-x: hidden;
}

p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); }

/* ═══════════════════════════════════════════════
   NAVBAR — Floating Fixed
═══════════════════════════════════════════════ */
.ydj-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 10px 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ydj-nav.scrolled {
  top: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
}

.ydj-nav .nav-logo img {
  height: 38px;
  width: auto;
}

.ydj-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ydj-nav .nav-links a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ydj-dark);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}

.ydj-nav .nav-links a:hover {
  background: var(--ydj-offwhite);
  color: var(--ydj-blue);
}

/* Mobile toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ydj-dark);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.ydj-hero {
  min-height: 100vh;
  background: #F9F9F9;
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.ydj-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249,54,62,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ydj-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(252,208,114,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-headline {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  color: #333333;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero-subtext {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  color: var(--ydj-gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-subtext strong {
  color: var(--ydj-dark);
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-ydj-primary {
  background: #FF705F;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,112,95,0.3);
}

.btn-ydj-primary:hover {
  background: #e55a49;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,112,95,0.35);
}

.btn-ydj-ghost {
  color: var(--ydj-dark);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  background: transparent;
}

.btn-ydj-ghost:hover {
  border-color: var(--ydj-coral);
  color: var(--ydj-coral);
  transform: translateY(-2px);
}

/* Hero image side */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrap .hero-img {
  width: 100%;
  max-width: 480px;
  height: 520px;
  object-fit: cover;
  border-radius: 24px 24px 80px 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* Floating LinkedIn icons */
.li-float {
  position: absolute;
  width: 52px;
  height: 52px;
  background: #0A66C2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 8px 28px rgba(10,102,194,0.35);
  z-index: 10;
  pointer-events: none;
}

.li-float-1 {
  top: 60px;
  right: -10px;
  animation: liFloat1 4s ease-in-out infinite;
}

.li-float-2 {
  bottom: 90px;
  left: -10px;
  animation: liFloat2 5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes liFloat1 {
  0%   { transform: translateY(0px) rotate(-4deg); }
  50%  { transform: translateY(-14px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(-4deg); }
}

@keyframes liFloat2 {
  0%   { transform: translateY(0px) rotate(6deg); }
  50%  { transform: translateY(-10px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(6deg); }
}

@media (max-width: 767px) {
  .li-float-1 { top: 20px; right: 10px; }
  .li-float-2 { bottom: 20px; left: 10px; }
}


/* ═══════════════════════════════════════════════
   SHOWCASE PRO INTRO SECTION
═══════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: #555555;
  margin-bottom: 16px;
  border: 1.5px solid #CCCCCC;
  border-radius: 50px;
  padding: 8px 20px;
}

.ydj-showcase-intro {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.showcase-headline {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #333333;
  letter-spacing: -1px;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Feature blocks */
.feature-block {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 48px;
  gap: 24px;
}

.feature-block .fb-content {
  padding: 32px 40px;
  flex: 1 1 50%;
  max-width: 50%;
}

.feature-block .fb-image {
  flex: 1 1 50%;
  max-width: 50%;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.feature-block .fb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-block.yellow-block { background: var(--ydj-yellow); }
.feature-block.blue-block   { background: var(--ydj-blue); }
.feature-block.coral-block  { background: var(--ydj-coral); }

.feature-block h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--ydj-dark);
  margin-bottom: 14px;
  line-height: 1.25;
}

.feature-block.blue-block h3,
.feature-block.coral-block h3 { color: #fff; }

.feature-block p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(34,34,34,0.75);
  margin: 0;
}

.feature-block.blue-block p,
.feature-block.coral-block p { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════
   HOW IT WORKS SECTION
═══════════════════════════════════════════════ */
.ydj-how {
  padding: 100px 0;
  background: #F9F9F9;
  text-align: center;
}

.how-headline {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #333333;
  margin-bottom: 16px;
}

.how-sub {
  font-size: 20px;
  color: var(--ydj-gray);
  margin-bottom: 56px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Staggered 3-card grid */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 56px;
  align-items: start;
}

/* White rounded box wrapper */
.how-step-wrap {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  transition: all 0.3s ease;
}

.how-step-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* Stagger offsets */
.how-step-wrap:nth-child(1) { margin-top: 48px; }
.how-step-wrap:nth-child(2) { margin-top: 0; }
.how-step-wrap:nth-child(3) { margin-top: 48px; }

/* Description text inside white box */
.how-step-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 4px 4px 8px;
  min-height: 52px;
}

/* Coloured card inside white box */
.how-card {
  border-radius: 14px;
  padding: 24px 28px 20px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.how-card.card-blue   { background: var(--ydj-blue); }
.how-card.card-coral  { background: var(--ydj-coral); }
.how-card.card-yellow { background: var(--ydj-yellow); }

.how-card .how-label {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: bold;
  color: rgba(255,255,255,0.85);
  text-align: left;
  line-height: 1.4;
}

.how-card.card-yellow .how-label { color: rgba(34,34,34,0.65); }

.how-card .how-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.how-card .how-num {
  font-family: var(--font-head);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.9);
}

.how-card.card-yellow .how-num { color: rgba(34,34,34,0.75); }

.how-card .how-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  margin-bottom: 6px;
}

.how-card.card-yellow .how-arrow { background: rgba(0,0,0,0.12); color: #333333; }

.how-card .how-deco {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.22;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.ydj-testimonials {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.testimonial-card .quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--ydj-blue);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  display: block;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ydj-gray);
  margin-bottom: 24px;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ydj-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-card .reviewer-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ydj-dark);
}

.testimonial-card .reviewer-role {
  font-size: 12px;
  color: var(--ydj-gray);
}

.stars {
  color: var(--ydj-yellow);
  font-size: 14px;
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════════════ */
.ydj-blog {
  padding: 100px 0;
  background: #fff;
}

.blog-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  border-color: transparent;
}

.blog-card .blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ydj-coral);
  margin-bottom: 10px;
  display: block;
}

.blog-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ydj-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.blog-card .blog-read {
  font-size: 13px;
  font-weight: 600;
  color: var(--ydj-coral);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-card .blog-read:hover { gap: 10px; }

/* ═══════════════════════════════════════════════
   FOOTER — Light theme matching concept design
═══════════════════════════════════════════════ */
.ydj-footer {
  background: var(--ydj-offwhite);
  color: #444444;
  padding: 72px 0 72px;
}

.ydj-footer .footer-inner {
  background: #ffffff;
  border-radius: 24px;
  margin: 0 auto 32px;
  max-width: 1140px;
  padding: 60px 60px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.ydj-footer .footer-logo img {
  height: 160px;
  width: auto;
  margin-bottom: 12px;
}

.ydj-footer .footer-tagline {
  font-size: 13px;
  color: #888888;
  line-height: 1.6;
}

.ydj-footer .footer-heading {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.ydj-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ydj-footer .footer-links li { margin-bottom: 12px; }

.ydj-footer .footer-links a {
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
}

.ydj-footer .footer-links a:hover { color: var(--ydj-blue); }

.ydj-footer .footer-bottom-bar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ydj-footer .footer-copy {
  font-size: 13px;
  color: #999999;
  padding-top: 12px;
}

.ydj-footer .footer-legal a {
  font-size: 13px;
  color: #999999;
  text-decoration: none;
  margin-left: 24px;
  transition: color 0.2s;
}

.ydj-footer .footer-legal a:first-child {
  text-decoration: underline;
  color: #555555;
}

.ydj-footer .footer-legal a:hover { color: var(--ydj-blue); }

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 0;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444444;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s;
  background: transparent;
  border: none;
}

.social-links a:hover {
  color: var(--ydj-blue);
}

/* ═══════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════ */
.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: #333333;
  line-height: 1.15;
}

.section-sub {
  font-size: 17px;
  color: var(--ydj-gray);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-headline { font-size: 38px; }
  .showcase-headline { font-size: 32px; }
  .section-title { font-size: 30px; }
  .how-headline { font-size: 34px; }
  .feature-block { flex-direction: column !important; }
  .feature-block .fb-content { flex: none; width: 100%; max-width: 100%; padding: 32px 28px; }
  .feature-block .fb-image { flex: none; width: 100%; max-width: 100%; height: 320px; }
  .how-grid { grid-template-columns: 1fr; gap: 16px; }
  .how-step-wrap:nth-child(1),
  .how-step-wrap:nth-child(2),
  .how-step-wrap:nth-child(3) { margin-top: 0; }
  .how-step-wrap { padding: 20px; }
}

@media (max-width: 767px) {
  .ydj-nav .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .hero-headline { font-size: 30px; }
  .ydj-hero { padding-top: 100px; }
  .hero-image-wrap { margin-top: 40px; }
}


/* ═══════════════════════════════════════════════
   ABOUT PAGE — Styles below are used only by about.html
═══════════════════════════════════════════════ */

/* Navbar active link (About page) */
.ydj-nav .nav-links a.active {
  background: var(--ydj-offwhite);
  color: var(--ydj-blue);
}

/* ═══════════════════════════════════════════════
   HERO — Grapefruit background
═══════════════════════════════════════════════ */
.about-hero {
  min-height: 70vh;
  background: url('images/ydj-grapefruit.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 20px 80px;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.about-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #333333;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 20px;
  color: var(--ydj-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════
   WHERE IT ALL STARTED
═══════════════════════════════════════════════ */
.about-intro {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

.about-intro h2 {
  font-size: 48px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.about-intro .intro-lead {
  font-size: 20px;
  color: var(--ydj-gray);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.75;
}

.about-intro .intro-bold {
  font-size: 20px;
  font-weight: 600;
  color: var(--ydj-dark);
  font-style: italic;
  max-width: 680px;
  margin: 0 auto 20px;
}

.about-intro .intro-closing {
  font-size: 20px;
  color: var(--ydj-gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════════════ */
.about-timeline {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.timeline-header {
  text-align: center;
  margin-bottom: 72px;
}

.timeline-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.timeline-header p {
  font-size: 20px;
  color: var(--ydj-gray);
  max-width: 500px;
  margin: 0 auto;
}

/* Hazel profile */
.hazel-profile {
  text-align: center;
  margin-bottom: 64px;
}

.hazel-avatar {
  width: 136px;
  /*height: 96px;*/
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  margin-bottom: 12px;
}

.hazel-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--ydj-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Timeline cards grid */
.timeline-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: start;
  gap: 0;
}

/* Year badge in centre */
.timeline-year-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
}

.timeline-year-badge {
  background: var(--ydj-dark);
  color: #fff;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
  z-index: 2;
}

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: #E0E0E0;
  margin-top: 8px;
}

/* Timeline cards */
.timeline-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.timeline-card.empty {
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

/* Full colour backgrounds — matching homepage feature blocks */
.timeline-card.yellow-card { background: var(--ydj-yellow); border: none; }
.timeline-card.blue-card   { background: var(--ydj-blue);   border: none; }
.timeline-card.coral-card  { background: var(--ydj-coral);  border: none; }
.timeline-card.red-card    { background: var(--ydj-red);    border: none; }
.timeline-card.light-card  { background: var(--ydj-light);  border: none; }
.timeline-card.green-card  { background: var(--ydj-green);           border: none; }
.timeline-card.purple-card { background: #9B8FE0;           border: none; }

/* Text colours on coloured cards */
.timeline-card.yellow-card h3,
.timeline-card.green-card h3,
.timeline-card.yellow-card p { color: #333333; }

.timeline-card.blue-card h3,
.timeline-card.coral-card h3,
.timeline-card.red-card h3,

.timeline-card.purple-card h3 { color: #ffffff; }

.timeline-card.blue-card p,
.timeline-card.coral-card p,
.timeline-card.red-card p,
.timeline-card.purple-card p { color: rgba(255,255,255,0.88); }

.timeline-card.blue-card .timeline-img-caption,
.timeline-card.coral-card .timeline-img-caption,
.timeline-card.red-card .timeline-img-caption,
.timeline-card.green-card .timeline-img-caption,
.timeline-card.purple-card .timeline-img-caption { color: rgba(255,255,255,0.6); }

/* Right-aligned cards — same full colours, no border overrides needed */
.timeline-item.right .timeline-card { border: none; }

.timeline-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ydj-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.timeline-card p {
  font-size: 18px;
  color: var(--ydj-gray);
  line-height: 1.7;
  margin: 0;
}

.timeline-card .timeline-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
  object-fit: cover;
  max-height: 250px;
}

.timeline-card .timeline-img-caption {
  font-size: 17px;
  color: #aaa;
  margin-top: 8px;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   2026 MILESTONE — Full width highlight
═══════════════════════════════════════════════ */
.milestone-2026 {
  background: linear-gradient(135deg, var(--ydj-red) 0%, var(--ydj-coral) 100%);
  border-radius: 24px;
  padding: 52px 60px;
  color: #fff;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.milestone-2026::before {
  content: '2026';
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: var(--font-head);
  font-size: 160px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  pointer-events: none;
}

.milestone-2026 .milestone-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: block;
}

.milestone-2026 h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.milestone-2026 p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  line-height: 1.75;
  margin: 0 0 28px;
}

.btn-milestone {
  background: #fff;
  color: var(--ydj-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-milestone:hover {
  background: var(--ydj-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-hero-content h1 { font-size: 38px; }
  .about-intro h2 { font-size: 34px; }
  .timeline-header h2 { font-size: 32px; }
  .milestone-2026 h3 { font-size: 26px; }
  .milestone-2026 { padding: 40px 32px; }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .timeline-year-col {
    flex-direction: row;
    justify-content: flex-start;
    padding: 16px 0 8px;
    gap: 12px;
  }

  .timeline-line { display: none; }

  .timeline-item .empty { display: none; }
  .timeline-item.right .timeline-card { border: none; }
}

@media (max-width: 767px) {
  .about-hero-content h1 { font-size: 30px; }
  .about-hero { padding-top: 120px; }
}


/* ═══════════════════════════════════════════════
   SHOWCASE PRO PAGE — Styles below are used only by showcase-pro.html
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   1. HERO — Full width centred (same as About Us)
═══════════════════════════════════════════════ */
.sp-hero {
  min-height: 70vh;
  background: url('https://images.unsplash.com/photo-1587614382346-4ec70e388b28?w=1400&auto=format&fit=crop&q=80') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 20px 80px;
}

.sp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

.sp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.sp-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #333333;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.sp-hero-content .hero-sub {
  font-size: 20px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.sp-hero-content .hero-sub strong { color: #333333; font-weight: 600; }

/* ═══════════════════════════════════════════════
   2. SOUND FAMILIAR
═══════════════════════════════════════════════ */
.sp-pain {
  padding: 100px 0;
  background: #fff;
}

.sp-pain h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-pain .pain-intro {
  font-size: 20px;
  color: #333333;
  max-width: 560px;
  margin: 0 auto 56px;
}

.pain-card {
  background: var(--ydj-offwhite);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: block;
}

.pain-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.pain-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 17px;
  color: #333333;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   3. SOLUTION — WORRY NO MORE
═══════════════════════════════════════════════ */
.sp-solution {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.sp-solution h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.sp-solution .solution-lead {
  font-size: 20px;
  color: #333333;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 56px;
}

/* Expertise + AI card */
.expertise-card {
  background: linear-gradient(135deg, var(--ydj-blue) 0%, #5a7ed9 100%);
  border-radius: 24px;
  padding: 52px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.expertise-card::before {
  content: '✦';
  position: absolute;
  right: 40px;
  top: -20px;
  font-size: 160px;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  font-family: var(--font-head);
}

.expertise-card h3 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.expertise-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 640px;
  margin: 0;
}

.expertise-card .expertise-formula {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.expertise-pill {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.expertise-equals {
  font-size: 22px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.expertise-result {
  background: var(--ydj-yellow);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}

.stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  color: var(--ydj-red);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 15px;
  color: #666666;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   4. WHAT YOU GET
═══════════════════════════════════════════════ */
.sp-deliverables {
  padding: 100px 0;
  background: #fff;
}

.sp-deliverables h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-deliverables .del-intro {
  font-size: 18px;
  color: #666666;
  max-width: 560px;
  margin: 0 auto 56px;
}

.deliverable-card {
  background: var(--ydj-offwhite);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.deliverable-card:hover {
  background: #fff;
  border-color: var(--ydj-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.deliverable-card .del-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.deliverable-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.deliverable-card p {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   5. HOW IT WORKS
═══════════════════════════════════════════════ */
.sp-how {
  padding: 100px 0;
  background: #F9F9F9;
  text-align: center;
}

.sp-how h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-how .how-intro {
  font-size: 20px;
  color: #333333;
  max-width: 500px;
  margin: 0 auto 64px;
}


/* ═══════════════════════════════════════════════
   6. WHO IT'S FOR
═══════════════════════════════════════════════ */
.sp-who {
  padding: 100px 0;
  background: #fff;
}

.sp-who h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-who .who-intro {
  font-size: 18px;
  color: #666666;
  max-width: 560px;
  margin: 0 auto 56px;
}

.who-card {
  border-radius: 24px;
  background-color: var(--ydj-light);
  overflow: hidden;
  margin-bottom: 20px;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 48px;
  gap: 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.who-img {
  flex: 1 1 50%;
  max-width: 50%;
  height: 260px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.who-text {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: left;
}

.who-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.who-card p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

.who-card.yellow { background: var(--ydj-yellow); }
.who-card.yellow h4 { color: var(--ydj-dark); }
.who-card.yellow p { color: rgba(34,34,34,0.75); }

.who-card.blue { background: var(--ydj-blue); }
.who-card.blue h4 { color: #fff; }
.who-card.blue p { color: rgba(255,255,255,0.85); }

.who-card.coral { background: var(--ydj-coral); }
.who-card.coral h4 { color: #fff; }
.who-card.coral p { color: rgba(255,255,255,0.85); }

.who-card.red { background: var(--ydj-red); }
.who-card.red h4 { color: #fff; }
.who-card.red p { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════════
   7. THE GUARANTEE
═══════════════════════════════════════════════ */
.sp-guarantee {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.guarantee-inner {
  background: #ffffff;
  border-radius: 28px;
  padding: 64px 72px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.guarantee-inner::before {
  content: '★';
  position: absolute;
  right: -20px;
  top: -40px;
  font-size: 220px;
  color: rgba(0,0,0,0.03);
  pointer-events: none;
  font-family: var(--font-head);
}

.guarantee-inner .g-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  color: var(--ydj-gray);
  margin-bottom: 20px;
  border: 1.5px solid rgba(124,152,230,0.4);
  border-radius: 50px;
  padding: 8px 20px;
}

.guarantee-inner h2 {
  font-size: 42px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 700px;
}

.guarantee-inner .g-statement {
  font-size: 20px;
  color: #333333;
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--ydj-offwhite);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #eeeeee;
}

.commitment-item .c-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ydj-coral);
  border: none;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(249,54,62,0.3);
}

.commitment-item p {
  font-size: 17px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

.g-note {
  margin-top: 28px;
  font-size: 14px;
  color: #888888;
  font-style: italic;
}

/* ═══════════════════════════════════════════════
   8. PRICING
═══════════════════════════════════════════════ */
.sp-pricing {
  padding: 100px 0;
  background: #fff;
}

.sp-pricing h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sp-pricing .pricing-intro {
  font-size: 20px;
  color: #333333;
  max-width: 500px;
  margin: 0 auto 56px;
}

.pricing-card {
  border-radius: 24px;
  padding: 44px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.pricing-card.free-card {
  background: var(--ydj-offwhite);
  border: 1.5px solid #e8e8e8;
}

.pricing-card.beta-card {
  background: #ffffff;
  border: 2px solid var(--ydj-blue);
  position: relative;
}

.pricing-card.beta-card:hover,
.pricing-card.free-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ydj-blue);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 1px;
}

.pricing-card .plan-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.free-card .plan-label { color: #888888; }
.beta-card .plan-label { color: var(--ydj-blue); }

.pricing-card .plan-price {
  font-family: var(--font-head);
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.free-card .plan-price { color: #333333; }
.beta-card .plan-price { color: #333333; }

.pricing-card .plan-price span {
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
  margin-top: 12px;
  display: inline-block;
}

.pricing-card .plan-period {
  font-size: 16px;
  margin-bottom: 32px;
}

.free-card .plan-period { color: #888888; }
.beta-card .plan-period { color: #333333; }

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.pricing-card .plan-features li {
  font-size: 17px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.beta-card .plan-features li {
  border-bottom-color: rgba(0,0,0,0.06);
}

.free-card .plan-features li { color: #333333; }
.beta-card .plan-features li { color: #333333; }

.pricing-card .plan-features li .check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.free-card .check { background: var(--ydj-blue); color: #ffffff; }
.beta-card .check { background: var(--ydj-blue); color: #ffffff; }

.pricing-card .plan-features li .cross {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.btn-pricing-free {
  background: transparent;
  color: #333333;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  border: 1.5px solid #CCCCCC;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  width: 100%;
}

.btn-pricing-free:hover {
  border-color: var(--ydj-blue);
  color: var(--ydj-blue);
  transform: translateY(-2px);
}

.btn-pricing-beta {
  background: var(--ydj-coral);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,112,95,0.35);
  width: 100%;
}

.btn-pricing-beta:hover {
  background: #e55a49;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,112,95,0.4);
}

/* ═══════════════════════════════════════════════
   9. TESTIMONIALS
═══════════════════════════════════════════════ */
.sp-testimonials {
  padding: 100px 0;
  background: var(--ydj-offwhite);
}

.sp-testimonials h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.trustpilot-bar {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border-radius: 50px;
  padding: 9px 22px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.trustpilot-bar .tp-stars {
  color: #00B67A;
  font-size: 18px;
  letter-spacing: 2px;
}

.trustpilot-bar .tp-text {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.trustpilot-bar .tp-divider {
  color: #cccccc;
}

.trustpilot-bar .tp-logo {
  font-size: 14px;
  font-weight: 700;
  color: #00B67A;
}
/* ═══════════════════════════════════════════════
   10. FAQ
═══════════════════════════════════════════════ */
.sp-faq {
  padding: 100px 0;
  background: #fff;
}

.sp-faq h2 {
  font-size: 44px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 24px 0;
}

.faq-item:first-of-type { border-top: 1px solid #f0f0f0; }

.faq-question {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}

.faq-question:hover { color: var(--ydj-blue); }

.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ydj-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--ydj-blue);
  color: #fff;
}

.faq-answer {
  font-size: 18px;
  color: #333333;
  line-height: 1.75;
  margin-top: 16px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ═══════════════════════════════════════════════
   11. FINAL CTA
═══════════════════════════════════════════════ */
.sp-final-cta {
  padding: 120px 0;
  background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&auto=format&fit=crop&q=80') center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sp-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,54,62,0.72) 0%, rgba(255,112,95,0.72) 100%);
  pointer-events: none;
}

.sp-final-cta h2 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
}

.sp-final-cta p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  position: relative;
}

.btn-final-cta {
  background: #fff;
  color: var(--ydj-red);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  position: relative;
}

.btn-final-cta:hover {
  background: var(--ydj-gray);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}


/* Green who-card — YDJ brand green */
.who-card.green { background: var(--ydj-green); }
.who-card.green h4 { color: var(--ydj-dark); }
.who-card.green p { color: rgba(34,34,34,0.75); }

/* ── Page-scoped overrides (require class="page-showcase-pro" on <body>).
     These selectors also exist in style.css with different values for
     index.html — scoping keeps both pages intact. ── */
.page-showcase-pro p { font-size: 20px; }

.page-showcase-pro .how-card { transition: all 0.3s; }
.page-showcase-pro .how-card:hover { transform: none; box-shadow: none; }

.page-showcase-pro .how-card .how-label {
  font-size: 17px;
  font-weight: bold;
}

/* ═══════════════════════════════════════════════
   SHOWCASE PRO PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .sp-hero-content h1 { font-size: 38px; }
  .sp-pain h2, .sp-solution h2,
  .sp-how h2, .sp-guarantee .guarantee-inner h2,
  .sp-pricing h2, .sp-testimonials h2, .sp-faq h2 { font-size: 34px; }
  .sp-final-cta h2 { font-size: 38px; }
  .guarantee-inner { padding: 44px 36px; }
  .commitment-grid { grid-template-columns: 1fr; }
  .who-card { flex-direction: column !important; padding: 32px 28px; }
  .who-img { flex: none; width: 100%; max-width: 100%; height: 220px; }
  .who-text { flex: none; width: 100%; max-width: 100%; }
}

@media (max-width: 767px) {
  .sp-hero { padding-top: 120px; }
  .sp-hero-content h1 { font-size: 30px; }
  .sp-final-cta h2 { font-size: 30px; }
  .who-card h4 { font-size: 26px; }
  .who-card p { font-size: 16px; }
}


/* ═══════════════════════════════════════════════
   POLICY PAGES — Styles below are used only by
   dmca-policy.html, privacy-policy.html, terms-of-use.html
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   POLICY PAGE BODY
═══════════════════════════════════════════════ */
.policy-section {
  padding: 140px 0 80px;
  background: #fff;
}

.policy-header {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 32px;
  margin-bottom: 48px;
}

/* Policy H1 — Bricolage Grotesque 48px 800 */
.policy-header h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.policy-meta { font-size: 14px; color: #888888; }
.policy-meta span {
  background: var(--ydj-offwhite);
  border-radius: 50px;
  padding: 5px 16px;
  display: inline-block;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Table of contents */
.policy-toc {
  background: var(--ydj-offwhite);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 48px;
}

/* TOC heading — Bricolage Grotesque 15px 700 — matches footer-heading */
.policy-toc h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.policy-toc ol { padding-left: 20px; margin: 0; }
.policy-toc ol li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.policy-toc ol li a { color: var(--ydj-blue); text-decoration: none; }
.policy-toc ol li a:hover { color: var(--ydj-coral); }

/* Policy H2 — Bricolage Grotesque 40px 800 — matches .section-title */
.policy-body h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin: 48px 0 16px;
}

/* Policy H3 — Bricolage Grotesque 24px 700 */
.policy-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 32px 0 12px;
}

/* Policy paragraphs — IBM Plex Sans 18px — matches index.html global p */
.policy-body p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* List items — IBM Plex Sans 18px */
.policy-body ul,
.policy-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}

.policy-body ul li,
.policy-body ol li {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 8px;
}

.policy-body a { color: var(--ydj-blue); text-decoration: none; }
.policy-body a:hover { color: var(--ydj-coral); text-decoration: underline; }

/* Strong — matches index.html */
.policy-body strong {
  font-family: 'IBM Plex Sans', sans-serif;
  color: #333333;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════
/* ── Page-scoped overrides (require class="page-policy" on <body>).
     These selectors exist in style.css with different values —
     scoping keeps all pages intact. ── */
.page-policy .section-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   POLICY PAGES — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .policy-header h1 { font-size: 36px; }
  .policy-body h2 { font-size: 30px; }
  .policy-body h3 { font-size: 20px; }
}

@media (max-width: 767px) {
  .policy-section { padding: 110px 0 60px; }
  .policy-header h1 { font-size: 28px; }
  .policy-body h2 { font-size: 24px; }
  .policy-body p,
  .policy-body ul li,
  .policy-body ol li { font-size: 16px; }
  .page-policy .ydj-footer .footer-inner { padding: 32px 24px; }
  .page-policy .ydj-footer .footer-bottom-bar { padding: 0 24px; }
}


/* ═══════════════════════════════════════════════
   CONTACT PAGE — Styles below are used only by contact.html
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   CONTACT SECTION — single full-width column
═══════════════════════════════════════════════ */
.contact-section {
  padding: 160px 0 100px;
  background: #fff;
  text-align: center;
}

.contact-section h1 {
  font-size: 52px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-section .contact-lead {
  font-size: 18px;
  color: #666666;
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* Contact detail cards — all horizontal rectangles */
.contact-card {
  background: var(--ydj-offwhite);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 17px;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--ydj-gray);
  text-decoration: underline;
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--ydj-blue); }

/* Trustpilot review button */
.btn-trustpilot {
  background: #fff;
  color: var(--ydj-blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  margin-top: 8px;
}

.btn-trustpilot:hover {
  background: var(--ydj-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .contact-section h1 { font-size: 38px; }
}

@media (max-width: 767px) {
  .contact-section { padding: 120px 0 80px; }
  .contact-section h1 { font-size: 30px; }
}


/* ═══════════════════════════════════════════════
   PAST EVENTS PAGE — Styles below are used only by past-events.html
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   PAGE HEADER
═══════════════════════════════════════════════ */
.events-header {
  padding: 140px 0 80px;
  background: #fff;
  text-align: center;
}

.events-header h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.events-header p {
  font-size: 18px;
  color: #666666;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════
   EVENT SECTIONS
═══════════════════════════════════════════════ */
.event-section {
  padding: 80px 0;
}

.event-section:nth-child(odd) { background: #F9F9F9; }
.event-section:nth-child(even) { background: #fff; }

/* Event header */
.event-year-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: var(--ydj-dark);
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.event-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.event-section .event-tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ydj-blue);
  margin-bottom: 24px;
  font-weight: 500;
}

.event-section p {
  font-size: 18px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.event-section strong {
  color: #333333;
  font-weight: 600;
}

/* Cause badges */
.cause-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.cause-badge {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1.5px solid;
}

.cause-badge.unity   { color: var(--ydj-blue);   border-color: var(--ydj-blue);   background: rgba(124,152,230,0.08); }
.cause-badge.diversity { color: var(--ydj-coral); border-color: var(--ydj-coral); background: rgba(255,112,95,0.08); }
.cause-badge.sustainability { color: #70DBD7; border-color: #70DBD7; background: rgba(76,175,130,0.08); }

/* Event image */
.event-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* Animated banner */
.event-banner {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/* YouTube embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-top: 24px;
}

.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Photo grid */
.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.event-photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.event-photo-grid img:hover { transform: scale(1.02); }

/* Charity info card */
.charity-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-top: 24px;
}

.charity-card h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
}

.charity-card p {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.7;
}

.charity-card a {
  color: var(--ydj-blue);
  text-decoration: none;
}

.charity-card a:hover { color: var(--ydj-coral); text-decoration: underline; }

/* Event dates strip */
.event-dates {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #888888;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.90);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 20px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: lb-zoom-in 0.25s ease;
}

@keyframes lb-zoom-in {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover { opacity: 1; }

/* Make grid images show pointer */
.event-photo-grid img { cursor: zoom-in; }

/* ═══════════════════════════════════════════════
   PAST EVENTS PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .events-header h1 { font-size: 38px; }
  .event-section h2 { font-size: 30px; }
}

@media (max-width: 767px) {
  .events-header { padding: 110px 0 60px; }
  .events-header h1 { font-size: 30px; }
  .event-section h2 { font-size: 26px; }
  .event-photo-grid { grid-template-columns: 1fr; }
  /* Scoped: requires class="page-past-events" on <body> */
  .page-past-events .ydj-footer .footer-inner { padding: 32px 24px; }
  .page-past-events .ydj-footer .footer-bottom-bar { padding: 0 24px; }
}


/* ═══════════════════════════════════════════════
   THANK YOU PAGE — Styles below are used only by thankyou.html
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   HERO — CONFIRMATION
═══════════════════════════════════════════════ */
.ty-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  background: #F9F9F9;
  position: relative;
  overflow: hidden;
}

/* Large decorative tick background */
.ty-hero::before {
  content: '✓';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 480px;
  font-weight: 800;
  color: rgba(124,152,230,0.06);
  pointer-events: none;
  font-family: var(--font-head);
  line-height: 1;
}

.ty-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

/* Animated confetti badge */
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ydj-yellow);
  border-radius: 50px;
  padding: 12px 28px;
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: #333333;
  animation: badgePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes badgePop {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.ty-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: #333333;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}

.ty-content .ty-sub {
  font-size: 20px;
  color: #333333;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
  animation: fadeSlideUp 0.7s ease 0.35s both;
}

@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   NEXT STEPS CARD
═══════════════════════════════════════════════ */
.next-steps-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 52px 60px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  text-align: left;
  margin-bottom: 40px;
  animation: fadeSlideUp 0.7s ease 0.5s both;
}

.next-steps-card h2 {
  font-size: 30px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0f0f0;
}

.step-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  color: #ffffff;
}

.step-num.blue  { background: var(--ydj-blue);  box-shadow: 0 4px 14px rgba(124,152,230,0.4); }
.step-num.coral { background: var(--ydj-coral); box-shadow: 0 4px 14px rgba(255,112,95,0.4); }
.step-num.yellow { background: var(--ydj-yellow); box-shadow: 0 4px 14px rgba(252,208,114,0.5); color: #333333; }

.step-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 4px;
}

.step-text p {
  font-size: 17px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

/* Primary CTA button — full width on card */
.btn-onboard {
  background: var(--ydj-coral);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,112,95,0.35);
  width: 100%;
  margin-top: 36px;
  animation: fadeSlideUp 0.7s ease 0.65s both;
}

.btn-onboard:hover {
  background: #e55a49;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,112,95,0.4);
}

/* ═══════════════════════════════════════════════
   WHAT TO EXPECT TIMELINE
═══════════════════════════════════════════════ */
.expect-section {
  padding: 100px 0;
  background: #ffffff;
}

.expect-section h2 {
  font-size: 40px;
  font-weight: 800;
  color: #333333;
  letter-spacing: -1px;
  margin-bottom: 52px;
}

.expect-card {
  background: var(--ydj-offwhite);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.expect-card:hover {
  background: #fff;
  border-color: var(--ydj-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.expect-card .e-day {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ydj-blue);
  margin-bottom: 12px;
}

.expect-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.3;
}

.expect-card p {
  font-size: 15px;
  color: #333333;
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   HELP STRIP
═══════════════════════════════════════════════ */
.help-strip {
  padding: 60px 0;
  background: var(--ydj-offwhite);
  text-align: center;
}

.help-strip p {
  font-size: 17px;
  color: #666666;
  margin: 0;
}

.help-strip a {
  color: var(--ydj-blue);
  font-weight: 600;
  text-decoration: none;
}

.help-strip a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   THANK YOU PAGE — RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .ty-content h1 { font-size: 40px; }
  .next-steps-card { padding: 40px 32px; }
  .expect-section h2 { font-size: 32px; }
}

@media (max-width: 767px) {
  .ty-hero { padding-top: 120px; }
  .ty-content h1 { font-size: 32px; }
  .ty-content .ty-sub { font-size: 17px; }
}
