/* ============================================================
   LONGDON FOODS — ABOUT / FOR ENTREPRENEURS PAGE
   Matches: snackwithbenefits.com/voor-ondernemers layout
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Permanent+Marker&display=swap');

@font-face {
  font-family: 'TT Trailers';
  src: url('../TT Trailers Trial Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ── Base reset for this page ──────────────────────────────── */
.about-page {
  background: #101820;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.ab-hero {
  position: relative;
  background: #101820;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 200px 60px 40px 60px;
  overflow: hidden;
  text-align: center;
}

.ab-hero__text {
  position: relative;
  z-index: 5;
  max-width: 1300px; /* Increased width */
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.ab-hero__sub {
  font-family: 'Permanent Marker', cursive;
  color: #f7f33a;
  font-size: clamp(30px, 4vw, 55px);
  line-height: 1;
  transform: rotate(-8deg) translateX(-10px);
  display: inline-block;
  margin-bottom: 8px;
}

/* Same style as contact page heading--huge */
.ab-hero__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(90px, 16vw, 220px);
  line-height: 0.85;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 32px 0;
  display: block;
}

.ab-hero__desc {
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto;
}

.ab-hero__img {
  position: absolute;
  top: 130px;
  right: 0;
  width: clamp(280px, 36vw, 560px);
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .ab-hero__title {
    font-size: clamp(60px, 12vw, 140px);
  }
}

@media (max-width: 900px) {
  .ab-hero {
    padding: 140px 28px 120px 28px;
    min-height: auto;
  }
  .ab-hero__img {
    width: clamp(240px, 65vw, 400px);
    top: 120px;
    right: -20px;
  }
}

@media (max-width: 600px) {
  .ab-hero {
    padding: 160px 20px 100px 20px;
  }
  .ab-hero__title {
    font-size: clamp(45px, 14vw, 100px);
  }
}


/* ============================================================
   SECTION 1.5 — STORY & PITCH
   ============================================================ */
.ab-story {
  background: #101820;
  padding: 100px 60px;
}

.ab-pitch {
  background: #0a1016; /* Subtle dark shift */
  padding: 100px 60px;
}

.ab-story__inner, .ab-pitch__inner {
  max-width: 1300px; /* Increased width */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ab-story__title, .ab-pitch__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(90px, 15vw, 180px);
  line-height: 0.85;
  text-transform: uppercase;
  color: #f7f33a;
  margin: 0;
  letter-spacing: 0.04em; /* Increased text width */
}

.ab-pitch__title {
  text-align: right;
  color: #fff;
}

.ab-story__text p, .ab-pitch__text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px 0;
}

@media (max-width: 900px) {
  .ab-story__inner, .ab-pitch__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ab-pitch__title {
    text-align: left;
    grid-row: 1; /* Moves pitch title above text on mobile */
  }
}

/* ============================================================
   SECTION 2 — BENEFITS ACCORDION
   ============================================================ */
.ab-benefits {
  background: #101820;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 20px 40px 100px 40px;
}

.ab-benefits__left {
  position: relative;
  overflow: hidden;
  background: #0a1016;
  width: 440px;
  height: 560px;
  border-radius: 16px;
  flex-shrink: 0;
}

.ab-benefits__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

.ab-benefits__right {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Accordion */
.ab-accordion__item {
  border-bottom: 2px solid rgba(255,255,255,0.3);
}

.ab-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.ab-accordion__trigger:hover {
  color: #f7f33a;
}

.ab-accordion__icon {
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.5);
}

.ab-accordion__item--open .ab-accordion__icon {
  transform: rotate(45deg);
  color: #f7f33a;
}

.ab-accordion__item--open .ab-accordion__trigger {
  color: #f7f33a;
}

.ab-accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.ab-accordion__item--open .ab-accordion__body {
  max-height: 300px;
  padding-bottom: 20px;
}

.ab-accordion__body p {
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

@media (max-width: 991px) {
  .ab-benefits {
    flex-direction: column;
    padding: 60px 24px;
    gap: 40px;
  }
  .ab-benefits__left {
    width: 100%;
    max-width: 400px;
    height: 480px;
  }
  .ab-benefits__right {
    width: 100%;
    max-width: 500px;
  }
}


/* ============================================================
   SECTION 3 — VIDEO SECTION
   ============================================================ */
.ab-video-section {
  background: #101820;
  padding: 80px 60px;
}

.ab-video-section__headline {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(50px, 10vw, 130px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 48px 0;
  text-align: left;
  padding-left: 80px;
}

.ab-video-wrap {
  position: relative;
  max-width: 1400px; /* Increased from 1200px */
  margin: 0 auto;
  border-radius: 0; /* Removed rounded corners */
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.ab-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 700px; /* Increased max-height */
  object-fit: cover;
}

.ab-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  width: auto;
  height: auto;
}

/* Pillow play button */
.ab-video-play__triangle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f33a;
  color: #101820;
  padding: 16px 36px;
  border-radius: 40px;
  font-size: 20px;
  border: none;
}

.ab-video-play__label {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #101820;
  background: #f7f33a;
  padding: 6px 18px;
  margin-top: 12px;
  display: block;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .ab-video-section {
    padding: 60px 20px;
  }
  .ab-video-wrap {
    width: 88% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
  .ab-video-play__triangle {
    padding: 10px 22px !important;
    font-size: 13px !important;
  }
}


/* ============================================================
   SECTION 4 — ORDER / WHERE TO FIND US
   ============================================================ */
.ab-order-section {
  background: #fff;
  padding: 80px 60px;
}

.ab-order-section__inner {
  max-width: 1300px; /* Increased width */
  margin: 0 auto;
}

.ab-order-title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 14vw, 180px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #101820;
  letter-spacing: -0.02em;
  margin: 0 0 48px 0;
}

.ab-order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-order-card {
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: #fff;
}

.ab-order-card:hover {
  border-color: #f7f33a;
  box-shadow: 0 8px 32px rgba(247,243,58,0.15);
}

.ab-order-card__icon {
  font-size: 36px;
  line-height: 1;
}

.ab-order-card__name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: #101820;
  margin: 0;
  letter-spacing: -0.02em;
}

.ab-order-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

.ab-order-card__products {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.ab-order-card__products li {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ab-order-card__products li::before {
  content: '—';
  color: #f7f33a;
  font-weight: 700;
}

.ab-order-card__btn {
  display: inline-block;
  background: #101820;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 50px;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.ab-order-card__btn:hover {
  background: #f7f33a;
  color: #101820;
  text-decoration: none;
}

@media (max-width: 900px) {
  .ab-order-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab-order-section {
    padding: 60px 28px;
  }
}

@media (max-width: 600px) {
  .ab-order-grid {
    grid-template-columns: 1fr;
  }
  .ab-order-section {
    padding: 50px 20px;
  }
}


/* ============================================================
   SECTION 5 — TESTIMONIALS
   ============================================================ */
.ab-testimonials {
  background: #101820;
  padding: 80px 60px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  align-items: center;
  gap: 80px;
}

.ab-testimonials__headline {
  padding: 0 40px 0 0;
  text-align: left;
  justify-self: end;
}

.ab-testimonials__sub {
  font-family: 'Permanent Marker', cursive;
  color: #f7f33a;
  font-size: clamp(28px, 3.5vw, 50px);
  line-height: 1;
  transform: rotate(-5deg) translateX(-6px);
  display: inline-block;
  margin-bottom: 4px;
}

.ab-testimonials__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 14vw, 180px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0;
}

.ab-testimonials__slider {
  position: relative;
  overflow: hidden;
}

.ab-testimonials__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-testimonial-slide {
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 60px;
}

.ab-testimonial-img-wrap {
  position: relative;
  overflow: hidden;
  width: 460px;
  height: 460px;
  flex-shrink: 0;
  border-radius: 0;
}

.ab-testimonial-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}

.ab-testimonial-name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 36px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.ab-testimonial-quote {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.ab-testimonial-quote p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px 0;
}

.ab-testimonial-role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f7f33a;
}

.ab-testimonials__controls {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.ab-testi-prev,
.ab-testi-next {
  background: none;
  border: 2px solid rgba(247, 243, 58, 0.4);
  color: #f7f33a;
  font-size: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1;
}

.ab-testi-prev:hover,
.ab-testi-next:hover {
  border-color: #f7f33a;
  background: #f7f33a;
  color: #101820;
}

@media (max-width: 991px) {
  .ab-testimonials {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 32px;
  }
  .ab-testimonial-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .ab-testimonials__headline {
    padding: 0;
    text-align: center;
    justify-self: center;
  }
  .ab-testimonials__controls {
    justify-content: center;
  }
  .ab-testimonials__slider {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ab-testimonial-img-wrap {
    width: 100%;
    height: 320px;
    border-radius: 0;
  }
  .ab-testimonial-quote {
    padding: 24px 0;
  }
  .ab-testimonials__controls {
    padding: 0;
    margin-bottom: 24px;
    justify-content: center;
  }
}

/* ============================================================
   SECTION 8 — FOUNDER
   ============================================================ */
.ab-founder {
  background: #101820;
  padding: 80px 60px;
  overflow: hidden;
}

.ab-founder__inner {
  max-width: 1300px; /* Increased width */
  margin: 0 auto;
}

.ab-founder__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 14vw, 180px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 40px 0;
  text-align: center;
}

.ab-founder__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ab-founder__img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
}

.ab-founder__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.ab-founder__name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 36px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.ab-founder__text {
  padding: 40px;
  background: #0a1016;
  border-radius: 16px;
}

.ab-founder__text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 0 0 20px 0;
}

.ab-founder__role {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f7f33a;
}

@media (max-width: 900px) {
  .ab-founder {
    padding: 60px 24px;
  }
  .ab-founder__content {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   SECTION 6 — FAQ
   ============================================================ */
.ab-faq {
  background: #101820;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ab-faq__inner {
  max-width: 1000px; /* Increased width */
  margin: 0 auto;
  padding: 0 60px;
}

.ab-faq__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 14vw, 180px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 56px 0;
}

.ab-faq-list {
  display: flex;
  flex-direction: column;
}

.ab-faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ab-faq__trigger {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  gap: 20px;
}

.ab-faq__trigger:hover {
  color: #f7f33a;
}

.ab-faq__icon {
  font-size: 26px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

.ab-faq__item--open .ab-faq__icon {
  transform: rotate(45deg);
  color: #f7f33a;
}

.ab-faq__item--open .ab-faq__trigger {
  color: #f7f33a;
}

.ab-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}

.ab-faq__item--open .ab-faq__body {
  max-height: 400px;
  padding-bottom: 24px;
}

.ab-faq__body p {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

@media (max-width: 600px) {
  .ab-faq__inner {
    padding: 0 20px;
  }
}


/* ============================================================
   SECTION 7 — FINAL CTA
   ============================================================ */
.ab-cta {
  background: #101820;
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ab-cta__img-float {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  width: clamp(240px, 30vw, 460px);
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

.ab-cta__img-float img {
  width: 100%;
  height: auto;
  display: block;
}

.ab-cta__headline {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px; /* Increased width */
  width: 100%;
}

.ab-cta__sub {
  font-family: 'Permanent Marker', cursive;
  color: #f7f33a;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  transform: rotate(-6deg) translateX(-8px);
  display: inline-block;
  margin-bottom: 6px;
}

.ab-cta__title {
  font-family: 'TT Trailers', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(90px, 16vw, 220px);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 40px 0;
}

.ab-cta__btn {
  display: inline-block;
  background: #f7f33a;
  color: #101820;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 50px;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  z-index: 5;
}

.ab-cta__btn:hover {
  background: #fff;
  color: #101820;
  text-decoration: none;
  transform: scale(1.04);
}

/* "We've got snacks!" stamp text — bottom right */
.ab-cta__wgs {
  position: absolute;
  bottom: 28px;
  right: 28px;
  font-family: 'Permanent Marker', cursive;
  color: #e8403a;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.1;
  transform: rotate(-8deg);
  text-align: center;
  pointer-events: none;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
  .ab-cta {
    padding: 80px 28px 120px;
  }
  .ab-cta__img-float {
    opacity: 0.2;
    width: 80%;
    right: -10%;
  }
  .ab-cta__wgs {
    right: 16px;
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .ab-cta {
    padding: 70px 20px 100px;
  }
  .ab-cta__title {
    font-size: clamp(52px, 16vw, 80px);
  }
}
/* Neon buttons (Matching Contact Page) */
.btn--yellow {
  position: relative;
  display: inline-block;
  padding: 24px 44px; /* Taller and slightly wider */
  font-family: 'Inter', sans-serif;
  font-size: 20px; /* Slightly larger text */
  font-weight: 800;
  text-transform: uppercase;
  color: #101820 !important;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: visible;
}

.btn__text {
  position: relative;
  z-index: 2;
}

.btn__bg-big {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s;
}

.bg--yellow { background-color: #f7f33a; }
.bg--green { background-color: #c4d600; transform: translate(-3px, 3px); }
.bg--pink { background-color: #FF585D; transform: translate(3px, -3px); }

.btn--yellow:hover .bg--green { transform: translate(-3px, 3px); } /* Keep static */
.btn--yellow:hover .bg--pink { transform: translate(3px, -3px); } /* Keep static */
.btn--yellow:hover .bg--yellow { transform: scale(1.02); } /* Subtle pulse instead */

/* Update existing button containers on About page to support new styles */
.ab-order-card__btn, .ab-cta__btn {
  /* Inherit shared neon styles */
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  display: inline-block !important;
}

/* Specific override to make the final CTA button container much larger */
.ab-cta__btn.btn--yellow {
  padding: 28px 56px !important; /* Slightly reduced container size */
  margin-top: 20px !important;
}
