/* ============================================
   PAGES.CSS — Page-Specific Styles
   Rebel Co. Group — Swiss Design System
   ============================================ */

/* ──────────────────────────────────────────
   HOME — HERO (overlay text on image)
   ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.35) contrast(1.1);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero__label {
  margin-bottom: var(--space-6);
  display: block;
  color: var(--color-gold);
}

.hero__content h1,
.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
}

.hero__desc {
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
  font-size: var(--text-base);
}

/* ── Hero entrance animations ── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero__label {
  animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.hero__title {
  animation: heroFadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.hero__desc {
  animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.hero .btn-group {
  animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.hero__trust {
  animation: heroFadeUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.hero__bg {
  animation: heroFadeIn 1.2s ease-out 0s both;
}

/* Animated underline — single diagonal stroke under text */
.underline-anim {
  position: relative;
  display: inline;
}

.underline-anim::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(-1.5deg);
  transform-origin: left center;
  opacity: 0.4;
  z-index: -1;
  clip-path: inset(0 100% 0 0);
  animation: stroke-draw 0.6s ease-out 1.2s forwards;
}

@keyframes stroke-draw {
  to { clip-path: inset(0 0 0 0); }
}

.hero .btn-group {
  justify-content: center;
}

.hero__trust {
  text-align: center;
}

.hero .btn--primary {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-black);
}

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

.hero .btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn--secondary:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.hero__trust {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__trust-text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: var(--tracking-wide);
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + var(--space-12));
    padding-bottom: var(--space-12);
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: calc(var(--nav-height-mobile) + var(--space-8));
    padding-bottom: var(--space-8);
  }
}

@media (max-width: 1023px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height-mobile) + var(--space-12));
    padding-bottom: var(--space-12);
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__image {
    order: -1;
  }
}

/* ──────────────────────────────────────────
   HOME — SERVICES SECTION
   ────────────────────────────────────────── */
.services-section .service-card:nth-child(-n+3) {
  padding-top: 0;
}

/* ──────────────────────────────────────────
   HOME — SECTORS
   ────────────────────────────────────────── */
.sectors-section .grid-4 {
  gap: 0;
}

.sectors-section .sector-card {
  border: none;
  border-right: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.sectors-section .sector-card:nth-child(4n) {
  border-right: none;
}

@media (max-width: 1023px) {
  .sectors-section .sector-card:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 767px) {
  .sectors-section .sector-card {
    border-right: none;
  }
}

/* ──────────────────────────────────────────
   ABOUT — FOUNDER
   ────────────────────────────────────────── */
.founder-section {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: calc(var(--grid-gutter) * 2);
  align-items: center;
}

.founder__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.founder__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  z-index: 1;
}

.founder__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
}

.founder__name {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.founder__title {
  font-family: var(--font-accent);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
  display: block;
}

.founder__bio {
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

@media (max-width: 1023px) {
  .founder-section {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .founder__image {
    max-width: 400px;
  }
}

/* ──────────────────────────────────────────
   ABOUT — PHILOSOPHY PILLARS
   ────────────────────────────────────────── */
.pillar {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  gap: var(--space-8);
}

.pillar__number {
  font-family: var(--font-accent);
  font-size: var(--text-4xl);
  color: var(--color-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.pillar__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.pillar__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: var(--leading-normal);
}

@media (max-width: 767px) {
  .pillar {
    flex-direction: column;
    gap: var(--space-4);
  }
}

/* ──────────────────────────────────────────
   SECTOR CARDS — About page (English)
   ────────────────────────────────────────── */
.sector-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
  transition: color var(--transition-base);
}

.sector-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}

.sector-card__link:hover { gap: var(--space-3); }
.sector-card:hover .sector-card__title { color: var(--color-white); }
.sector-card:hover .sector-card__link  { color: var(--color-gold); }

/* ──────────────────────────────────────────
   CONTACT — SPLIT LAYOUT
   ────────────────────────────────────────── */
.contact-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-8));
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-gray-200);
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-black);
  fill: none;
  stroke-width: 1.5;
}

.contact-info__label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-gray-500);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-black);
}

.contact-info__value a {
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--color-gold);
}

.trust-points {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  background: var(--color-gray-50);
  border-left: 2px solid var(--color-black);
}

.trust-points__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}

.trust-points__check {
  color: var(--color-gold);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   CONTACT — FORM
   ────────────────────────────────────────── */
.contact-form__title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.contact-form__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  margin-bottom: var(--space-12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  margin-top: var(--space-8);
}

.form-submit .btn {
  width: 100%;
  padding: 1.125rem 2.5rem;
  font-size: var(--text-base);
}

/* ──────────────────────────────────────────
   CAREERS — VALUES
   ────────────────────────────────────────── */
.value-card {
  padding: var(--space-8);
  border: 1px solid var(--color-gray-200);
  transition: border-color var(--transition-base);
}

.value-card:hover {
  border-color: var(--color-gold);
}

.value-card__number {
  font-family: var(--font-accent);
  font-size: var(--text-3xl);
  color: var(--color-gray-200);
  line-height: 1;
  margin-bottom: var(--space-6);
}

.value-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
}

.value-card__desc {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: var(--leading-normal);
}

/* ──────────────────────────────────────────
   SSS — CATEGORY TABS
   ────────────────────────────────────────── */
.faq-categories {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-gray-200);
  padding-bottom: var(--space-4);
}

.faq-categories__btn {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  padding: var(--space-2) var(--space-4);
  color: var(--color-gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.faq-categories__btn:hover,
.faq-categories__btn--active {
  color: var(--color-black);
}

.faq-categories__btn--active::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--space-4) - 1px);
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
}

/* ──────────────────────────────────────────
   SECTOR DETAIL PAGES
   ────────────────────────────────────────── */
.sector-hero {
  padding-top: calc(var(--nav-height) + var(--space-24));
  padding-bottom: var(--space-16);
}

.sector-hero__pain-point {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-gray-900);
  font-style: italic;
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
  border-left: 3px solid var(--color-gold);
}

.sector-solution {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: calc(var(--grid-gutter) * 2);
}

.sector-solution__content {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
}

@media (max-width: 1023px) {
  .sector-solution {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   LEGAL PAGES
   ────────────────────────────────────────── */
.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.legal-content h3 {
  font-size: var(--text-lg);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.legal-content p {
  margin-bottom: var(--space-4);
  color: var(--color-gray-600);
}

.legal-content ul {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.legal-content li {
  list-style: disc;
  color: var(--color-gray-600);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

/* ──────────────────────────────────────────
   404 PAGE
   ────────────────────────────────────────── */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-page__code {
  font-family: var(--font-accent);
  font-size: 12rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-gray-200);
  margin-bottom: var(--space-4);
}

.error-page__title {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
}

.error-page__desc {
  color: var(--color-gray-600);
  margin-bottom: var(--space-8);
  margin-left: auto;
  margin-right: auto;
}

/* ──────────────────────────────────────────
   PAGE HERO — inner pages
   ────────────────────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-24));
  padding-bottom: var(--space-16);
  padding-inline: var(--grid-margin);
  max-width: var(--grid-max-width);
  margin-inline: auto;
}

.display-lg {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-black);
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

/* ──────────────────────────────────────────
   MARQUEE — scrolling logo / text strip
   ────────────────────────────────────────── */
.marquee {
  padding-block: var(--space-10);
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  background: var(--color-white);
  overflow: hidden;
}

.marquee--dark {
  background: var(--color-black);
  border-color: rgba(255,255,255,0.08);
}

.marquee__label {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-inline: var(--grid-margin);
}

.marquee__track {
  display: flex;
  gap: var(--space-12);
  align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee__track--reverse { animation-direction: reverse; }
.marquee__track:hover { animation-play-state: paused; }

.marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.5;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}

.marquee__item:hover { opacity: 0.9; filter: grayscale(0); }

.marquee__item img {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}

.marquee__item--text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  white-space: nowrap;
  opacity: 0.65;
  filter: none;
  letter-spacing: 0.03em;
}

.marquee--dark .marquee__item--text {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

/* ──────────────────────────────────────────
   SERVICE CARDS
   ────────────────────────────────────────── */
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  border-color: var(--color-gray-400);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.service-card__image { aspect-ratio: 16/9; overflow: hidden; }

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img { transform: scale(1.04); }

.service-card__number {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-gold);
  padding: var(--space-4) var(--space-6) 0;
  letter-spacing: 0.1em;
}

.service-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-black);
  padding: var(--space-2) var(--space-6);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.65;
  padding: 0 var(--space-6);
  flex: 1;
  max-width: none;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gold);
  padding: var(--space-4) var(--space-6) var(--space-6);
  transition: gap 0.15s;
}

.service-card__link:hover { gap: var(--space-3); }

.tag {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gray-500);
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

/* ──────────────────────────────────────────
   AWARDS SECTION
   ────────────────────────────────────────── */
.awards {
  padding-block: var(--space-16);
  background: var(--color-black);
}

.awards__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.award-img {
  height: 90px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.award-img:hover { opacity: 1; }

.awards__text {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.awards__text p {
  color: rgba(255,255,255,0.5);
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: none;
}

/* ──────────────────────────────────────────
   FEATURE CARDS — Why Us section
   ────────────────────────────────────────── */
.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  border-color: var(--color-gray-300);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,215,0,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-black);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.65;
  max-width: none;
}

/* ──────────────────────────────────────────
   STATS BAR — About page counters
   ────────────────────────────────────────── */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  padding: var(--space-10);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-black);
  line-height: 1;
}

.stat-number--lg { font-size: clamp(2.5rem, 5vw, 4rem); }

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin-top: var(--space-2);
}

/* ──────────────────────────────────────────
   PROCESS STEPS — English layout (horizontal)
   ────────────────────────────────────────── */
.process-step__number {
  font-family: var(--font-accent);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step__content { flex: 1; }

.process-step__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.process-step__desc {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.7;
  max-width: none;
}

.reveal-stagger .process-step {
  display: flex;
  flex-direction: row;
  gap: var(--space-8);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--color-gray-200);
  align-items: flex-start;
}

.reveal-stagger .process-step:last-child { border-bottom: none; }

/* ──────────────────────────────────────────
   REVEAL STAGGER — scroll animations
   ────────────────────────────────────────── */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.revealed > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.revealed > *:nth-child(8) { transition-delay: 560ms; }

.reveal-stagger.revealed > * { opacity: 1; transform: translateY(0); }

/* ──────────────────────────────────────────
   ACCORDION — FAQ component
   ────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; }

.accordion__item { border-bottom: 1px solid var(--color-gray-200); }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-black);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.15s;
}

.accordion__trigger:hover { color: var(--color-gold); }
.accordion__item--open .accordion__trigger { color: var(--color-gold); }

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--color-gray-400);
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.accordion__icon::after  { width: 2px; height: 14px; transform: translate(-50%, -50%); }

.accordion__item--open .accordion__icon { color: var(--color-gold); }
.accordion__item--open .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.accordion__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.accordion__content-inner { padding-bottom: var(--space-5); }

.accordion__content-inner p {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.75;
  max-width: none;
}

/* ──────────────────────────────────────────
   CONTACT FORM ELEMENTS
   ────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--color-gray-700);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-black);
  background: var(--color-white);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23374151' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-error {
  font-size: var(--text-xs);
  color: #EF4444;
  display: none;
}

.form-group.invalid .form-error,
.form-group--error .form-error { display: block; }
.form-group.invalid .form-input,
.form-group.invalid .form-select,
.form-group.invalid .form-textarea,
.form-group--error .form-input,
.form-group--error .form-select,
.form-group--error .form-textarea { border-color: #EF4444; }

/* ──────────────────────────────────────────
   CONTACT MAP
   ────────────────────────────────────────── */
.contact-map {
  margin-top: var(--space-8);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

/* ──────────────────────────────────────────
   FOOTER — English layout
   ────────────────────────────────────────── */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-block: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--space-8);
}

.footer__logo {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer__logo-full {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 32ch;
}

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__list a,
.footer__list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

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

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  max-width: none;
}

.footer__legal { display: flex; gap: var(--space-6); }

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color 0.15s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.55); }

/* ──────────────────────────────────────────
   CHATBOT WIDGET
   ────────────────────────────────────────── */
.chatbot {
  position: fixed;
  bottom: var(--space-6);
  right: calc(var(--space-6) + 52px + var(--space-3));
  z-index: 90;
}

.chatbot__toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.chatbot__toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,0.35); }

.chatbot__icon-chat,
.chatbot__icon-close {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  position: absolute;
  transition: opacity 0.25s, transform 0.25s;
}

.chatbot__icon-close { opacity: 0; transform: rotate(-90deg); }
.chatbot--open .chatbot__icon-chat { opacity: 0; transform: rotate(90deg); }
.chatbot--open .chatbot__icon-close { opacity: 1; transform: rotate(0); }

.chatbot__pulse {
  position: absolute;
  top: 4px; right: 4px;
  width: 10px; height: 10px;
  background: #10B981;
  border-radius: 50%;
  border: 2px solid var(--color-white);
}

.chatbot__window {
  position: absolute;
  bottom: calc(100% + var(--space-3));
  right: 0;
  width: 340px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(10px);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  max-height: 500px;
}

.chatbot--open .chatbot__window {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: all;
}

.chatbot__header {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-black); color: var(--color-white);
}

.chatbot__avatar {
  width: 36px; height: 36px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-sm);
  color: var(--color-black); flex-shrink: 0;
}

.chatbot__header-name { font-weight: 600; font-size: var(--text-sm); }
.chatbot__header-status { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }

.chatbot__messages {
  flex: 1; overflow-y: auto;
  padding: var(--space-4) var(--space-5);
  display: flex; flex-direction: column; gap: var(--space-3);
  min-height: 200px; max-height: 280px;
}

.chatbot__msg {
  max-width: 80%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.chatbot__msg--bot {
  background: var(--color-gray-100);
  color: var(--color-gray-700);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  max-width: none;
}

.chatbot__msg--user {
  background: var(--color-black); color: var(--color-white);
  align-self: flex-end; border-bottom-right-radius: 4px;
}

.chatbot__suggestions {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  padding: 0 var(--space-5) var(--space-3);
}

.chatbot__suggestion {
  font-size: var(--text-xs); color: var(--color-gray-600);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  padding: var(--space-1) var(--space-3);
  cursor: pointer; background: var(--color-white);
  transition: border-color 0.15s, color 0.15s;
}

.chatbot__suggestion:hover { border-color: var(--color-black); color: var(--color-black); }

.chatbot__input-area {
  display: flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--color-gray-100);
}

.chatbot__input {
  flex: 1; border: none; outline: none;
  font-size: var(--text-sm); font-family: var(--font-body);
  color: var(--color-black); background: transparent;
}

.chatbot__input::placeholder { color: var(--color-gray-400); }

.chatbot__send {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--color-black); color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; flex-shrink: 0;
  transition: background 0.15s;
}

.chatbot__send svg {
  width: 16px; height: 16px; fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.chatbot__send:hover { background: var(--color-gray-800); }

/* ──────────────────────────────────────────
   WHATSAPP FLOAT — English
   ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 91;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; border-radius: 50%;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ──────────────────────────────────────────
   BUTTON VARIANTS — English
   ────────────────────────────────────────── */
.btn--white {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}
.btn--white:hover { background: var(--color-gray-100); border-color: var(--color-gray-100); }

.btn--outline-white {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.btn__arrow { display: inline-block; transition: transform 0.15s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ──────────────────────────────────────────
   CTA SECTION
   ────────────────────────────────────────── */
.cta-section {
  background: var(--color-gray-900);
  padding-block: clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,215,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  color: var(--color-white);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
}
.cta-section .label { color: var(--color-gold); }
.cta-section .label::before { background: rgba(255,215,0,0.4); }
.cta-section .text-lead { color: rgba(255,255,255,0.6); }
.cta-section .btn-group { justify-content: center; }

/* ──────────────────────────────────────────
   UTILITY CLASSES
   ────────────────────────────────────────── */
.text-center { text-align: center; }
.section-header--centered { text-align: center; }
.section-header--centered p { margin-inline: auto; }
.content--narrow { max-width: var(--content-max-width); margin-inline: auto; }
.mt-8 { margin-top: var(--space-8); }

/* ──────────────────────────────────────────
   FLOATING PILL NAV (EN pages)
   ────────────────────────────────────────── */
.header {
  background: transparent !important;
  box-shadow: none !important;
  padding: 14px var(--grid-margin);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header.header--scrolled,
.header--scrolled {
  background: transparent !important;
}
.header__inner {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 8px 8px 8px 24px;
  gap: 0;
  position: relative;
  overflow: visible;
}
.header__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  z-index: 0;
  pointer-events: none;
}
.header__inner > * {
  position: relative;
  z-index: 1;
}
.header__logo-full {
  height: 32px;
  width: auto;
}
.nav__list {
  gap: 2px;
}
.nav__link {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--color-gray-600);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav__link:hover {
  color: var(--color-black);
  background: rgba(0, 0, 0, 0.05);
}
.nav__link--active {
  color: var(--color-black);
  font-weight: 600;
}
.lang-toggle {
  font-size: 13px;
  color: var(--color-gray-500);
  margin: 0 12px;
}
.lang-toggle a.active {
  color: var(--color-black);
  font-weight: 600;
}
.lang-toggle__sep {
  margin: 0 4px;
  color: var(--color-gray-300);
}
.btn--sm {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
/* Mobile menu pill adjustment */
.mobile-menu {
  top: calc(14px + 52px + 8px);
  border-radius: 20px;
  margin: 0 var(--grid-margin);
  width: auto;
  right: var(--grid-margin);
  left: var(--grid-margin);
}

/* ──────────────────────────────────────────
   HERO — LIGHT GRADIENT VERSION
   ────────────────────────────────────────── */
.hero--light {
  background: linear-gradient(155deg, #FAFAF8 0%, #F7F5F0 55%, #FAF8F2 100%);
  min-height: 100vh;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero--light .hero-blobs::after {
  display: none; /* no dark overlay */
}
.hero--light .blob--1 {
  opacity: 0.28;
  width: 650px; height: 650px;
  top: -15%; left: -12%;
}
.hero--light .blob--2 {
  opacity: 0.18;
  width: 550px; height: 550px;
  top: 5%; right: -12%;
}
.hero--light .blob--3 {
  opacity: 0.12;
  width: 400px; height: 400px;
  bottom: -5%; left: 35%;
}
.hero--light .hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero--light .hero__title {
  font-family: var(--font-primary);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #0B0B12;
  margin: 0 auto var(--space-6);
  max-width: 860px;
}
.hero--light .hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  line-height: 1.6;
}
.hero--light .hero__actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

/* Eyebrow badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-gray-600);
  margin-bottom: 32px;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(8px);
}
.eyebrow-tag {
  background: #111827;
  color: #fff;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00D66F;
  box-shadow: 0 0 0 3px rgba(0, 214, 111, 0.25);
  flex-shrink: 0;
}

/* New hero button styles */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.btn-hero svg {
  width: 15px;
  height: 15px;
  transition: transform 0.15s ease;
}
.btn-hero:hover svg {
  transform: translateX(3px);
}
.btn-hero--dark {
  background: #111827;
  color: #fff;
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.35);
}
.btn-hero--dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(17, 24, 39, 0.45);
  color: #fff;
}
.btn-hero--outline {
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  color: #111827;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}
.btn-hero--outline:hover {
  border-color: rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

/* Brand name scroll (trust row) */
.hero__trust-row {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.trust-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand-scroll {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brand-scroll__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: brand-scroll 38s linear infinite;
  align-items: center;
}
.brand-scroll:hover .brand-scroll__track {
  animation-play-state: paused;
}
@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-name {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--color-gray-300);
  white-space: nowrap;
  transition: color 0.25s ease;
  user-select: none;
}
.brand-name:hover { color: #111827; }
.brand-name--bold { font-weight: 900; letter-spacing: -0.05em; font-size: 26px; }
.brand-name--serif { font-style: italic; font-weight: 400; font-size: 28px; }
.brand-name--mono { font-family: 'Courier New', monospace; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }

/* ──────────────────────────────────────────
   BENTO GRID — STRIPE-STYLE CARDS
   ────────────────────────────────────────── */
.bento-section { padding: 100px 0 60px; }

.bento-pro {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: var(--space-12);
}

.bento-pro-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
  cursor: default;

  /* CSS vars for tilt/glow */
  --shift-x: 0;
  --shift-y: 0;
  --mx: 50%;
  --my: 50%;
  --border-angle: 0deg;

  transform: perspective(1400px) rotateX(calc(var(--shift-y) * -1deg)) rotateY(calc(var(--shift-x) * 1deg));
  transition: box-shadow 0.4s ease, border-color 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 2px 12px rgba(0,0,0,0.04);
  will-change: transform;
}
.bento-pro-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.09), 0 4px 16px rgba(0,0,0,0.05), 0 0 0 1px rgba(255,215,0,0.1), 0 24px 60px -20px rgba(255,215,0,0.2);
}

/* Conic gradient border on hover */
.bento-card__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0deg,
    transparent 55deg,
    rgba(255, 215, 0, 0.9) 85deg,
    rgba(255, 165, 0, 0.7) 115deg,
    rgba(204, 100, 0, 0.4) 145deg,
    transparent 175deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 3;
}
.bento-pro-card:hover .bento-card__border { opacity: 1; }

/* Mouse glow spotlight */
.bento-pro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(255, 215, 0, 0.08),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.bento-pro-card:hover::before { opacity: 1; }

/* Mesh background accent (warm gold) */
.bento-mesh {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.bento-mesh--gold {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(255,215,0,0.25), transparent 70%);
  top: -40px; right: -40px;
}
.bento-pro-card:hover .bento-mesh { opacity: 1; }

/* Card content sits above effects */
.bento-pro-card > *:not(.bento-card__border):not(.bento-mesh) {
  position: relative;
  z-index: 2;
}

/* Card grid column spans */
.bento-pro-card--wide   { grid-column: span 7; }
.bento-pro-card--narrow { grid-column: span 5; }
.bento-pro-card--half   { grid-column: span 6; }
.bento-pro-card--third  { grid-column: span 4; }
.bento-pro-card--full   { grid-column: span 12; }
.bento-pro-card--dark {
  background: var(--color-gray-900);
  border-color: rgba(255, 215, 0, 0.12);
}
.bento-pro-card--dark::before {
  background: radial-gradient(
    420px circle at var(--mx) var(--my),
    rgba(255, 215, 0, 0.07),
    transparent 50%
  );
}

/* Card icon */
.bento-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  flex-shrink: 0;
}
.bento-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-gold-dark);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bento-pro-card--dark .bento-card__icon {
  background: rgba(255, 215, 0, 0.12);
}
.bento-pro-card--dark .bento-card__icon svg {
  stroke: var(--color-gold);
}

/* Card typography */
.bento-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: var(--space-3);
}
.bento-pro-card--dark .bento-card__eyebrow { color: var(--color-gold); }

.bento-card__title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.bento-pro-card--dark .bento-card__title { color: var(--color-white); }

.bento-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.65;
  max-width: 380px;
}
.bento-pro-card--dark .bento-card__desc { color: rgba(255,255,255,0.5); }

/* Big stat number in bento */
.bento-stat {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-black);
  line-height: 1;
  margin-top: var(--space-6);
}
.bento-pro-card--dark .bento-stat { color: var(--color-gold); }

/* Mock metric / dashboard elements */
.mock-metric {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.mock-metric__val {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mock-metric__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}
.mock-badge--green { background: rgba(16,185,129,0.1); color: #059669; }
.mock-badge--red   { background: rgba(239,68,68,0.08); color: #dc2626; }
.mock-badge--gold  { background: rgba(255,215,0,0.15); color: #CC8800; }

.mock-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-gray-100);
}
.mock-bar-row:last-child { border-bottom: none; }
.mock-bar-label { font-size: 13px; font-weight: 500; color: var(--color-gray-700); flex: 1; min-width: 0; }
.mock-bar-track { flex: 2; height: 6px; background: var(--color-gray-100); border-radius: 3px; overflow: hidden; }
.mock-bar-fill  { height: 100%; background: var(--color-gold); border-radius: 3px; }
.mock-bar-val   { font-size: 13px; font-weight: 700; color: var(--color-black); width: 50px; text-align: right; }

.metrics-row {
  display: flex;
  gap: var(--space-6);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

/* Location dots for global offices in bento */
.office-dots {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.office-dot-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}
.office-dot-row::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,215,0,0.2);
}
.office-dot-row span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-left: auto;
  font-weight: 400;
}

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 1023px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 767px) {
  .page-hero {
    padding-top: calc(var(--nav-height-mobile) + var(--space-12));
    padding-bottom: var(--space-12);
  }
  .display-lg { font-size: clamp(2rem, 7vw, 2.5rem); }
  .footer__grid { grid-template-columns: 1fr; }
  .stats-bar { gap: var(--space-8); padding: var(--space-8) var(--space-4); }
  .awards__grid { gap: var(--space-4); }
  .award-img { height: 60px; }
  .chatbot { right: var(--space-4); bottom: calc(var(--space-4) + 52px + var(--space-3)); }
  .whatsapp-float { right: var(--space-4); bottom: var(--space-4); }
  .chatbot__window { width: calc(100vw - 2rem); right: auto; left: var(--space-4); }
}
