/* ============================================================
   DAIYRA 360 — Index (Home) Page Styles
   Sections specific to index.html only
   ============================================================ */

/* ── HOME HERO (Figma exact) ─────────────────────────────── */
.hero-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
}

/* Background image */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform-origin: left top;
  display: block;
}
/* Gradient overlay: right transparent -> left solid black */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(-84.59deg, rgba(0,0,0,0) 2.57%, rgba(0,0,0,1) 72.11%);
}

/* Yellow-orange glow (left side, pure CSS blur) */
.hero-glow-wrap {
  position: absolute;
  left: -164px;
  top: 0;
  bottom: 0;
  width: 726px;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
}
.hero-glow-blob {
  width: 300px;
  height: 560px;
  background: linear-gradient(160deg, #fad007 0%, #d76f00 100%);
  filter: blur(160px);
  transform: rotate(-30deg);
  border-radius: 50%;
  opacity: .55;
  flex-shrink: 0;
}

/* Purple orb composition */
.hero-purple-wrap {
  position: absolute;
  left: -30%;
  top: -500px;
  width: 2100px;
  height: 2000px;
  opacity: .4;
  pointer-events: none;
  z-index: 1;
}
.hero-purple-img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Hero text */
.hero-content-center { position: relative; z-index: 3; }

.hero-main-title {
  font-family: var(--d-font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 6.25rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 960px;
  margin: 0 auto 60px;
}
.hero-gradient-text {
  background: linear-gradient(to right, #fad007, #d76f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-arabic-sub {
  font-family: 'Jost', 'Noto Sans Arabic', var(--d-font-body);
  font-size: clamp(1rem, 2.2vw, 2rem);
  font-weight: 500;
  color: #fff;
  text-align: center;
  direction: rtl;
  margin: 0;
  line-height: 1.5;
}

/* Hero floating badges */
.hero-badge {
  position: absolute;
  background: rgba(20,20,20,.92);
  border: 1px solid var(--d-border-accent);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  z-index: 3;
}
.hero-badge i { color: var(--d-accent); }
.hero-badge-1 { top: 12%; right: -10px; animation: float 6s ease-in-out infinite; }
.hero-badge-2 { bottom: 18%; left: -10px; animation: float 6s ease-in-out infinite 1.5s; }

/* Hero trust bar */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--d-muted);
}
.trust-sep { width: 1px; height: 18px; background: var(--d-border); }

@media (max-width: 991.98px) {
  .hero-main { padding: 100px 0 60px; }
  .hero-glow-wrap { left: -200px; width: 460px; }
  .hero-glow-blob { width: 220px; height: 400px; filter: blur(110px); opacity: .45; }
  .hero-purple-wrap { opacity: .2; }
}
@media (max-width: 575.98px) {
  .hero-main-title { letter-spacing: -0.02em; }
  .hero-arabic-sub { font-size: .95rem; }
}

/* ── 20. ABOUT US SECTION (HOME — Figma 410-33424) ─────────── */
.about-home {
  /* Larger top padding so ring visually sits above the text, matching Figma */
  padding: 180px 0 140px;
  background: #0a0a0a;
}

/* Background atmospheric SVG */
.abt-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.abt-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*
 * Figma canvas: 1919px wide, section 1311px tall.
 * Ring container   inset: top 6.62%, right 23.4%,  bottom 41.28%, left 23.45%
 * Mockup container inset: top 6.62%, right 27.68%, bottom 40.82%, left 27.29%
 * Ring image (832x832) flex-centered in its container, then skewX(13deg) scaleY(0.97).
 * Mockup sits behind ring (lower z-index).
 */

/* Mockup — depth/shadow layer, behind ring */
.abt-mockup {
  position: absolute;
  left: 27.29%;
  right: 27.68%;
  top: 40px;
  pointer-events: none;
  z-index: 1;
  border: 1px solid red;
}
.abt-mockup img {
  width: 100%;
  height: auto;
  /* Matching 3D perspective for depth/shadow layer */
  transform: perspective(850px) rotateX(18deg) rotateZ(-10deg) scale(0.97);
  filter: drop-shadow(-18px 38px 65px rgba(0,0,0,0.88));
  transform-origin: center center;
  display: block;
}

/* Ring — main decoration, in front of mockup, behind text */
.abt-ring {
  position: absolute;
  left: 23.45%;
  right: 23.4%;
  top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  will-change: transform;
}
.abt-ring img {
  flex-shrink: 0;
  width: min(832px, 100%);
  height: auto;
  /*
   * 3D torus effect:
   *  perspective(850px)  — sets depth projection
   *  rotateX(18deg)      — tilts top away from viewer → ring appears as oval disc
   *  rotateZ(-10deg)     — counterclockwise lean so white sphere sits at top-right
   *  scaleX(1.08)        — compensate slight horizontal foreshortening
   */
  transform: perspective(850px) rotateX(18deg) rotateZ(-10deg) scaleX(1.08);
  filter: drop-shadow(-12px 28px 50px rgba(0,0,0,0.78))
          drop-shadow(0 0 80px rgba(255,195,10,0.12));
  transform-origin: center center;
  display: block;
}

/* Ring — main decoration, in front of mockup, behind text */
.abt-ring-top {
  position: absolute;
  left: 23%;
  right: 23.5%;
  top: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  will-change: transform;
}
.abt-ring-top img {
  flex-shrink: 0;
  width: min(832px, 100%);
  height: auto;
  transform: perspective(850px) rotateX(18deg) rotateZ(-10deg) scaleX(1.08);
  filter: drop-shadow(-12px 28px 50px rgba(0,0,0,0.78))
          drop-shadow(0 0 80px rgba(255,195,10,0.12));
  transform-origin: center center;
  display: block;
}

/* Badge row */
.abt-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fad007;
  display: inline-block;
  flex-shrink: 0;
}
.abt-badge-text {
  font-family: 'Jost', var(--d-font-body);
  font-size: clamp(1rem, 1.8vw, 1.6rem);
  font-weight: 500;
  color: #fff;
}

/* Heading */
.abt-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  max-width: 1050px;
  margin: 0 auto 44px;
}
.abt-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Body text */
.abt-body {
  font-family: 'Jost', var(--d-font-body);
  font-size: clamp(.95rem, 1.5vw, 1.75rem);
  color: #fff;
  line-height: 1.6;
  max-width: 1050px;
  margin-bottom: 72px;
}
.abt-muted { color: rgba(255,255,255,0.4); }

/* Stat card */
.abt-stat-card {
  flex: 0 0 240px;
  width: 240px;
  height: 240px;
  border: 2.8px solid #be3933;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background-image: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%),
                    linear-gradient(90deg, rgba(250,208,7,0.2) 0%, rgba(215,111,0,0.2) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  /* smooth spring-back when mouse leaves */
  transition: transform 0.55s cubic-bezier(0.03, 0.98, 0.52, 0.99),
              box-shadow 0.55s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  will-change: transform;
}
/* cursor-follow glare highlight */
.abt-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at var(--tilt-x, 50%) var(--tilt-y, 50%),
    rgba(255,255,255,0.18) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.abt-stat-card:hover::before {
  opacity: 1;
}
.abt-stat-num {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.abt-stat-lbl {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
  max-width: 160px;
}

/* Staggered rows */
.abt-stats-r1 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.abt-stats-r2 {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 991.98px) {
  .abt-ring   { left: 13%; right: 13%; top: 30px; }
  .abt-mockup { left: 16%; right: 16%; top: 30px; }
  .abt-heading { font-size: clamp(1.6rem, 4vw, 3rem); }
  .abt-stats-r1, .abt-stats-r2 { justify-content: center; }
}
@media (max-width: 767.98px) {
  .about-home { padding: 80px 0 80px; }
  .abt-ring   { left: 4%; right: 4%; top: 20px; }
  .abt-mockup { left: 7%; right: 7%; top: 20px; }
  .abt-stat-card { flex: 0 0 calc(50% - 12px); width: auto; height: 180px; }
  .abt-stat-num  { font-size: 2.25rem; }
  .abt-stat-lbl  { font-size: .85rem; }
}
@media (max-width: 479.98px) {
  .abt-stat-card { flex: 0 0 100%; height: 160px; }
}

/* ── 21. BUILD A STRONGER FUTURE (Figma 410-33292) ──────── */
.bsf-section {
  padding: 120px 0 0;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Header */
.bsf-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.bsf-dot-icon   { width: 21px; height: 21px; flex-shrink: 0; display: block; }
.bsf-badge-label {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: #fff;
}
.bsf-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 24px;
}
.bsf-gradient-text {
  background: linear-gradient(to right, #fad007, #d76f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bsf-body-text {
  font-family: 'Jost', var(--d-font-body);
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 1050px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Three-column layout */
.bsf-interactive {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
}
.bsf-col {
  flex: 0 0 360px;
  width: 360px;
}
.bsf-col-title {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 700;
  font-size: clamp(1.4rem, 2vw, 2.5rem);
  color: #fff;
  text-align: center;
  margin-bottom: 26px;
}

/* Project list items */
.bsf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bsf-item {
  padding: 10px 20px;
  border-radius: 60px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  text-align: center;
}
.bsf-item-text {
  font-family: 'Jost', var(--d-font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.75rem);
  font-weight: 400;
  color: #fff;
  display: block;
  transition: background 0.25s ease;
  -webkit-text-fill-color: #fff;
}
/* Active / hover state */
.bsf-item--active,
.bsf-item:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fad007;
  transform: scale(1.02);
}
.bsf-item--active .bsf-item-text,
.bsf-item:hover .bsf-item-text {
  background: linear-gradient(to right, #fad007, #d76f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Center circle showcase */
.bsf-showcase {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsf-circle-wrap {
  position: relative;
  width: min(546px, 100%);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
/* Inner circle — clips bg + image to a perfect circle */
.bsf-circle-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}
.bsf-circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: 85%;
  display: block;
}
/* Glow ring extends ~4.44% beyond circle on all sides */
.bsf-circle-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width:  90%;
  height: 90%;
  display: block;
  pointer-events: none;
}
.bsf-img-stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bsf-project-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bsf-project-img.bsf-fade-out {
  opacity: 0;
  transform: scale(0.9);
}

/* Logo marquee rows */
.bsf-logos-section {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.bsf-marquee-track { overflow: hidden; width: 100%; }
.bsf-marquee--rev  { padding-left: 70px; }   /* Figma row-2 offset */

.bsf-marquee-inner {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: bsf-scroll 35s linear infinite;
}
.bsf-marquee--rev .bsf-marquee-inner { animation-direction: reverse; }

@keyframes bsf-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Pause on hover */
.bsf-marquee-track:hover .bsf-marquee-inner { animation-play-state: paused; }

.bsf-logo-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 32px 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  flex-shrink: 0;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.bsf-logo-box:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}
.bsf-logo-box img {
  height: 34px;
  width:  155px;
  object-fit: contain;
  display: block;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .bsf-col { flex: 0 0 300px; width: 300px; }
  .bsf-circle-wrap { width: min(440px, 100%); }
}
@media (max-width: 991.98px) {
  .bsf-interactive { flex-direction: column; gap: 60px; }
  .bsf-col { flex: 0 0 auto; width: 100%; }
  .bsf-circle-wrap { width: min(420px, 90vw); }
  .bsf-list { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 575.98px) {
  .bsf-section { padding: 80px 0 0; }
  .bsf-interactive { margin-top: 50px; }
  .bsf-logos-section { margin-top: 50px; }
  .bsf-logo-box { padding: 20px 24px; }
  .bsf-logo-box img { height: 24px; width: 110px; }
}

/* ── 22. WHY CHOOSE US (Figma 410-33534) ────────────────── */
.wcu-section {
  padding: 120px 0 120px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

/* Blurred background wallpaper — rotated 180deg and blurred like Figma */
.wcu-bg-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.wcu-bg-img {
  min-width: 166%;
  min-height: 134%;
  object-fit: cover;
  transform: rotate(180deg);
  filter: blur(24px);
  opacity: 0.75;
  flex-shrink: 0;
}

/* Header */
.wcu-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.wcu-dot-icon   { width: 21px; height: 21px; flex-shrink: 0; display: block; }
.wcu-badge-label {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 500;
  font-size: clamp(1rem, 1.8vw, 2rem);
  color: #fff;
}
.wcu-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.wcu-gradient-text {
  background: linear-gradient(to right, #fad007, #d76f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wcu-header { margin-bottom: 53px; }

/* Cards row — positioned container so cards can sit at arbitrary heights */
.wcu-cards {
  position: relative;
  min-height: 480px;  /* tall enough for lowest card (top:310) + card body (~380px) + buffer */
}

/* Each card absolutely placed in its column with a different top offset */
.wcu-card:nth-child(1) { left: 0;                      top: 100px;   }
.wcu-card:nth-child(2) { left: calc(25% + 6px);        top: 280px; }
.wcu-card:nth-child(3) { left: calc(50% + 12px);       top: 90px;  }
.wcu-card:nth-child(4) { left: calc(75% + 18px);       top: 310px; }

/* Single card */
.wcu-card {
  position: absolute;
  width: calc(25% - 18px);  /* 4 cols, 3 x 24px gap -> (100% - 72px) / 4 */
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(18,13,4,0.75);
  overflow: hidden;
  cursor: default;
  will-change: transform;
  /* parallax y is driven by --wcu-py (set by JS per card) */
  transform: translateY(var(--wcu-py, 0px));
  transition: box-shadow 0.3s ease;   /* only shadow transitions; transform is JS-driven */
}
.wcu-card:hover {
  /* compose hover lift on top of parallax position */
  transform: translateY(calc(var(--wcu-py, 0px) - 8px));
  box-shadow: 0 0 80px 0 rgba(255,204,14,0.22);
}

/* Sparkle overlay (stars texture, 40% opacity) */
.wcu-card-sparkle {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.wcu-card-sparkle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Golden glow at bottom-center (Figma: box-shadow 250px #ffcc0e on Stars layer) */
.wcu-card-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(255,204,14,0.28) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

/* Card content */
.wcu-card-inner {
  position: relative;
  z-index: 1;
  padding: 46px 23px 36px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
}
.wcu-icon img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  display: block;
}
.wcu-text { display: flex; flex-direction: column; gap: 6px; }
.wcu-card-title {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.wcu-card-body {
  font-family: 'Jost', var(--d-font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  margin: 0;
}

/* Responsive — revert to flow layout on smaller screens */
@media (max-width: 991.98px) {
  .wcu-cards {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .wcu-card {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    transform: none !important;
  }
}
@media (max-width: 575.98px) {
  .wcu-section { padding: 80px 0 80px; }
  .wcu-cards   { grid-template-columns: 1fr; gap: 16px; }
  .wcu-icon img { width: 120px; height: 120px; }
}

/* ── 23. CTA BANNER ──────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: #000;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #0a0a0a;
}

/* Blurred background wallpaper */
.cta-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.29;
  transform: rotate(180deg);
  filter: blur(24px);
  transform-origin: center center;
}

/* Left — text block */
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-heading {
  font-family: var(--d-font-heading);
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 40px;
}
.cta-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid #be3933;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--d-font-body);
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
  background: rgba(190, 57, 51, 0.25);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(190, 57, 51, 0.35);
}

/* Right — visual canvas */
.cta-visual {
  position: relative;
  height: 540px;
}
.cta-ring {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}
.cta-hand {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 110%;
  max-width: none;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .cta-visual { height: 380px; }
  .cta-ring   { width: 280px; right: -20px; }
  .cta-hand   { width: 100%; right: -20px; }
}
@media (max-width: 767.98px) {
  .cta-section { padding: 70px 0 0; }
  .cta-visual  { height: 320px; margin-top: 40px; }
  .cta-heading { margin-bottom: 28px; }
  .cta-ring    { width: 220px; }
}
@media (max-width: 575.98px) {
  .cta-visual { height: 260px; }
  .cta-ring   { width: 180px; right: 0; }
  .cta-hand   { width: 100%; right: 0; }
}

/* ── 24. SECTION MERGE SHADOWS ───────────────────────────── */
/*
 * Each section fades its bottom edge into #0a0a0a (site base bg),
 * merging seamlessly with the section below — no hard edge.
 * ::after = shadow at section bottom  |  ::before = shadow at section top
 */

/* Shared bottom-shadow rule for all sections that need a merge fade */
.about-home,
/* .bsf-section, */
.wcu-section,
.cta-section,
.svs-section,
.proc-section {
  position: relative; /* ensure pseudo-elements anchor correctly */
}

.about-home::after,
/* .bsf-section::after, */
.wcu-section::after,
.cta-section::after,
.svs-section::after,
.proc-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, #0a0a0a 100%);
  pointer-events: none;
  z-index: 30;
}

/* ── 25. SERVICES — STICKY SCROLL SHOWCASE ───────────────── */

/* Section wrapper */
.svs-section {
  position: relative;
  background: #0a0a0a;
}

/* Outer tall div — height overridden by JS to fit exactly: 100vh + total card shift */
.svs-outer {
  height: calc(100vh + 1800px);
}

/* Sticky viewport-height panel — pins to top while .svs-outer scrolls past */
.svs-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  background: #010101;
}

/* Orange-red atmospheric gradient band (Figma: #010101 via #ff5c1c to #010101) */
.svs-gradient-band {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #010101  0%,
    #010101  8%,
    #ff5c1c 39%,
    #010101 85%,
    #010101 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Left column — robot/AI full-bleed image */
.svs-left {
  position: relative;
  width: 60%;
  height: 100%;
  flex-shrink: 0;
  z-index: 1;
}
.svs-robot-img {
  position: absolute;
  top: -2%;
  left: 0;
  width: 100%;
  height: 106%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}
/* Vignette overlay: bottom dark fade + right-edge bleed into card column */
.svs-left-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(6.787deg, rgb(1,1,1) 17.4%, rgba(71,26,8,0) 36.85%),
    linear-gradient(to right, transparent 55%, #010101 100%);
  z-index: 2;
  pointer-events: none;
}

/* Right column — cards panel */
.svs-right {
  position: relative;
  width: 40%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  padding: 60px 48px 60px 24px;
  display: flex;
  align-items: flex-start;
}

/* Cards track — translateY set by JS per scroll frame */
.svs-cards-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  will-change: transform;
}

/* Individual service card — glassmorphism with red border */
.svs-card {
  width: 100%;
  flex-shrink: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 2.8px solid #be3933;
  border-radius: 24px;
  padding: 24px;
  opacity: 0.75;
  transition: opacity 0.5s ease;
}
.svs-card.svs-card--active {
  opacity: 1;
}

/* Icon: circle bg SVG + white icon on top */
.svs-card-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
}
.svs-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.svs-icon-img {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

/* Card text */
.svs-card-title {
  font-family: var(--d-font-body);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.svs-card-text {
  font-family: var(--d-font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Responsive — disable sticky on tablet/mobile */
@media (max-width: 991.98px) {
  .svs-outer  { height: auto !important; }
  .svs-sticky { position: relative; height: auto; flex-direction: column; }
  .svs-left   { width: 100%; height: 280px; }
  .svs-right  { width: 100%; height: auto; overflow: visible; padding: 32px 24px 40px; }
  .svs-cards-track { transform: none !important; }
  .svs-card   { opacity: 1 !important; }
}
@media (max-width: 575.98px) {
  .svs-left  { height: 200px; }
  .svs-right { padding: 24px 16px 32px; }
}


/* ── 26. OUR PROCESS — STEPPED CAROUSEL ─────────────────── */
.proc-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 60px;
  overflow: hidden;
}

/* Ambient yellow-orange glow blur */
.proc-glow {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 540px;
  height: 330px;
  background: linear-gradient(to right, #fad007, #d76f00);
  filter: blur(200px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Header */
.proc-header {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto 64px;
}
.proc-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}
.proc-dot { width: 14px; height: auto; }
.proc-badge-label {
  font-family: var(--d-font-body);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
}
.proc-subtext {
  font-family: var(--d-font-body);
  font-size: clamp(16px, 1.8vw, 22px);
  color: #fff;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}
.proc-gradient-text {
  background: linear-gradient(to right, #fad007, #d76f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Carousel outer — must be relative so side nav buttons anchor to it */
.proc-carousel-outer { position: relative; }

.proc-track-wrap {
  /* overflow-x: clip clips horizontal overflow WITHOUT creating a scroll container,
     which means overflow-y remains visible so connectors can reach the road below. */
  overflow-x: clip;
  overflow-y: visible;
  padding-top: 140px; /* headroom for elevated "prev" cards */
}

/* Sliding track */
.proc-track {
  display: flex;
  align-items: flex-end; /* all items bottom-aligned so connectors touch road */
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Step items */
.proc-item {
  flex-shrink: 0;
  width: clamp(300px, 28vw, 460px);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.35;
  transform: translateY(0);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
}
.proc-item.proc-active {
  opacity: 1;
  transform: translateY(100px);
}
.proc-item.proc-prev {
  opacity: 0.55;
  transform: translateY(-10px);
}
.proc-item.proc-next {
  opacity: 0.55;
  transform: translateY(100px);
}

/* Card */
.proc-card {
  width: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(to right, rgba(138,79,142,0.15), rgba(190,57,51,0.15));
  border: 2.8px solid #be3933;
  border-radius: 24px;
  padding: 24px;
}
.proc-card-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
}
.proc-icon-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.proc-icon-img {
  position: absolute;
  width: 42%;
  height: 42%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
.proc-step-label {
  font-family: var(--d-font-body);
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
.proc-step-text {
  font-family: var(--d-font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin: 0;
}

/* Connector pin below card */
.proc-connector { width: 86px; height: 120px; flex-shrink: 0; margin-top: 4px; }
.proc-connector img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* Road SVG — slight negative margin pulls it up to kiss the connector bottoms */
.proc-road-wrap { width: 100%; margin-top: -28px; position: relative; z-index: 1; }
.proc-road { width: 100%; height: auto; display: block; }

/* Navigation — dot row (centred below road) */
.proc-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0;
}

/* Side arrow buttons — absolutely anchored inside .proc-carousel-outer */
.proc-nav-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  background: rgba(20, 10, 5, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
  padding: 0;
  box-shadow: 0 0 24px rgba(190,57,51,0.25);
}
.proc-nav-btn--prev { left: clamp(12px, 2.5vw, 40px); }
.proc-nav-btn--next { right: clamp(12px, 2.5vw, 40px); }
.proc-nav-btn:hover {
  border-color: #be3933;
  background: rgba(190,57,51,0.35);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 32px rgba(190,57,51,0.5);
}
.proc-nav-btn:disabled { opacity: 0.25; cursor: default; }
.proc-dots { display: flex; gap: 10px; align-items: center; }
.proc-dot-item {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.proc-dot-item.proc-dot-active { background: #fad007; transform: scale(1.45); }

/* Decorative ball */
.proc-ball {
  position: absolute;
  left: -90px;
  bottom: -20px;
  width: 200px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .proc-track-wrap { padding-top: 100px; }
  .proc-item.proc-prev { transform: translateY(-100px); }
}
@media (max-width: 575.98px) {
  .proc-section { padding: 70px 0 40px; }
  .proc-track-wrap { padding-top: 80px; }
  .proc-item.proc-prev { transform: translateY(-70px); }
  .proc-ball { width: 220px; left: -80px; }
}

/* ══════════════════════════════════════════════════════════
   27. TECH STACK
══════════════════════════════════════════════════════════ */

.tch-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Gold ambient glow — top-right */
.tch-glow {
  position: absolute;
  top: 21px;
  right: -80px;
  width: 535px;
  height: 534px;
  background: #bc9624;
  filter: blur(300px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* ── Header ─────────────────────────────────────────────── */
.tch-header-row {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.tch-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.tch-badge-dot {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.tch-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.tch-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.tch-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tch-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* ── Tab column ─────────────────────────────────────────── */
.tch-body-row {
  position: relative;
  z-index: 1;
}

.tch-tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tch-sep {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.tch-sep-alternate {
  width: 100%;
  height: 20px;
  display: block;
}

.tch-sep--flip {
  transform: scaleY(-1);
}

.tch-tab-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  width: 100%;
}

.tch-tab-btn {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 60px;
  padding: 14px 24px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s, background 0.3s, border-color 0.3s, padding 0.3s, font-size 0.3s;
}

.tch-tab-btn:hover:not(.tch-tab-active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Active tab — yellow pill */
.tch-tab-active {
  background: #191919 !important;
  border-color: #fad007 !important;
  color: #ffcc0e !important;
  font-weight: 700;
  font-size: 24px;
  padding: 22px 24px;
  max-width: 299px;
}

/* ── Card panels ─────────────────────────────────────────── */
.tch-panels-wrap {
  position: relative;
  min-height: 460px;
  width: fit-content;
  margin-left: auto;
}

.tch-panel {
  display: none;
}

.tch-panel--active {
  display: block;
  animation: tchSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.tch-panel--leaving {
  display: block;
  animation: tchSlideOut 0.28s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

@keyframes tchSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes tchSlideOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-40px); }
}

/* ── Cards ───────────────────────────────────────────────── */
.tch-cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.tch-cards-row--2 {
  margin-top: 20px;
  margin-left: 60px; /* right-offset mirrors Figma second-row stagger */
}

.tch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 200px;
  height: 200px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2.8px solid #be3933;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(190, 57, 51, 0.3);
}

.tch-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.tch-name {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1199.98px) {
  .tch-cards-row--2 { margin-left: 30px; }
  .tch-card { width: 175px; height: 175px; }
}

@media (max-width: 991.98px) {
  .tch-section { padding: 70px 0 80px; }
  .tch-tab-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .tch-tab-btn { font-size: 15px; padding: 10px 18px; max-width: none; width: auto; }
  .tch-tab-active { font-size: 15px; padding: 10px 18px; max-width: none; }
  .tch-sep { display: none; }
  .tch-tabs-wrap { margin-bottom: 36px; }
  .tch-cards-row--2 { margin-left: 0; }
  .tch-card { width: 150px; height: 150px; }
  .tch-icon { width: 60px; height: 60px; }
  .tch-name { font-size: 14px; }
  .tch-panels-wrap { min-height: 380px; }
}

@media (max-width: 575.98px) {
  .tch-heading { font-size: 34px; }
  .tch-badge-label { font-size: 22px; }
  .tch-desc { font-size: 16px; }
  .tch-card { width: 130px; height: 130px; padding: 16px; }
  .tch-icon { width: 50px; height: 50px; }
  .tch-name { font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════
   27B. PORTFOLIO SECTION (Figma 410-33748)
══════════════════════════════════════════════════════════ */
.pfl-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Header */
.pfl-header {
  text-align: center;
  max-width: 1174px;
  margin: 0 auto 40px;
}

.pfl-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pfl-badge-dot {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.pfl-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.pfl-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 auto 24px;
}

.pfl-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* Tabs */
.pfl-tabs-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.pfl-tabs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pfl-tab {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.8vw, 28px);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 60px;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pfl-tab:hover:not(.pfl-tab--active) {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.pfl-tab--active {
  background: linear-gradient(90deg, #fad007 0%, #d76f00 100%);
  border-color: #fad007;
  color: #fff;
  font-weight: 500;
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(250, 208, 7, 0.3);
}

/* Showcase */
.pfl-showcase {
  position: relative;
  min-height: 300px;
}

.pfl-showcase-card {
  border: 2.9px solid #be3933;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
}

.pfl-showcase-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}

/* Panel show/hide with animation */
.pfl-panel {
  display: none;
}

.pfl-panel--active {
  display: block;
  animation: pflFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pfl-panel--leaving {
  display: block;
  animation: pflFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@keyframes pflFadeIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pflFadeOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-16px) scale(0.97); }
}

/* Responsive */
@media (max-width: 991.98px) {
  .pfl-section { padding: 70px 0 80px; }
  .pfl-badge-label { font-size: 24px; }
  .pfl-desc { font-size: 16px; }
  .pfl-tab { font-size: 16px; padding: 8px 16px; }
}

@media (max-width: 575.98px) {
  .pfl-heading { font-size: 20px; }
  .pfl-badge-label { font-size: 20px; }
  .pfl-desc { font-size: 14px; }
  .pfl-tab { font-size: 14px; padding: 7px 14px; }
  .pfl-showcase-card { border-radius: 16px; }
  .pfl-showcase-img { border-radius: 14px; }
}

/* ══════════════════════════════════════════════════════════
   27C. CLIENT TESTIMONIAL (Figma 410-33777)
══════════════════════════════════════════════════════════ */
.tml-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Header */
.tml-header {
  text-align: center;
  margin-bottom: 40px;
}

.tml-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tml-badge-dot {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.tml-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.tml-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.tml-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Carousel */
.tml-carousel-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.tml-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tmlScroll 30s linear infinite;
}

.tml-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes tmlScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card — gradient border via background trick */
.tml-card {
  flex-shrink: 0;
  width: 329px;
  border-radius: 24px;
  padding: 2.8px;
  background: linear-gradient(160deg, #be3933 0%, #d76f00 50%, #fad007 100%);
  opacity: 0.85;
  transition: opacity 0.35s ease, box-shadow 0.35s ease;
}

.tml-card:hover {
  opacity: 1;
  box-shadow: 0 8px 32px rgba(250, 208, 7, 0.15), 0 0 20px rgba(190, 57, 51, 0.15);
}

.tml-card-inner {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

/* Top row: avatar + meta */
.tml-card-top {
  display: flex;
  align-items: flex-start;
  gap: 19px;
}

.tml-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.tml-avatar-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tml-avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.tml-meta {
  display: flex;
  flex-direction: column;
}

.tml-name {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
}

.tml-date {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Stars */
.tml-stars {
  display: flex;
  justify-content: center;
}

.tml-stars-img {
  width: 202px;
  height: 40px;
  display: block;
}

/* Text */
.tml-text {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .tml-section { padding: 70px 0 80px; }
  .tml-badge-label { font-size: 24px; }
}

@media (max-width: 575.98px) {
  .tml-badge-label { font-size: 20px; }
  .tml-heading { font-size: 22px; }
  .tml-card { width: 280px; }
  .tml-card-inner { padding: 18px; gap: 18px; }
  .tml-name { font-size: 20px; }
  .tml-text { font-size: 15px; }
  .tml-stars-img { width: 160px; }
}

/* ══════════════════════════════════════════════════════════
   27D. BLOGS CAROUSEL (Figma 410-33880)
══════════════════════════════════════════════════════════ */
.blg-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Header */
.blg-header {
  text-align: center;
  margin-bottom: 40px;
}

.blg-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blg-badge-dot {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}

.blg-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.blg-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.blg-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Carousel */
.blg-carousel-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.blg-carousel-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: blgScroll 25s linear infinite;
}

.blg-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes blgScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card */
.blg-card {
  flex-shrink: 0;
  width: 617px;
  height: 566px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: #fff;
}

.blg-card-img-wrap {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
}

.blg-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.blg-card:hover .blg-card-img {
  transform: scale(1.05);
}

/* Bottom gradient overlay */
.blg-card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(215,111,0,0.6) 100%);
  pointer-events: none;
}

/* Gold glow on first card */
.blg-card-glow {
  position: absolute;
  top: -1px;
  left: -245px;
  width: 535px;
  height: 534px;
  background: linear-gradient(90deg, #fad007, #d76f00);
  filter: blur(300px);
  pointer-events: none;
  z-index: 0;
}

/* Content at bottom */
.blg-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 23px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 2;
}

.blg-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  border: 0.5px solid #fff;
  border-radius: 60px;
  padding: 10px 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  opacity: 0.8;
  white-space: nowrap;
}

.blg-card-title {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

/* Responsive */
@media (max-width: 991.98px) {
  .blg-section { padding: 70px 0 80px; }
  .blg-badge-label { font-size: 24px; }
  .blg-card { width: 420px; height: 400px; }
  .blg-card-tag { font-size: 16px; padding: 8px 16px; }
  .blg-card-title { font-size: 20px; }
}

@media (max-width: 575.98px) {
  .blg-badge-label { font-size: 20px; }
  .blg-heading { font-size: 22px; }
  .blg-card { width: 300px; height: 320px; }
  .blg-card-tag { font-size: 14px; padding: 6px 12px; }
  .blg-card-title { font-size: 17px; }
  .blg-card-content { padding: 16px; gap: 10px; }
}

/* ══════════════════════════════════════════════════════════
   27E. INSTAGRAM FEED (Figma 410-33906)
══════════════════════════════════════════════════════════ */
.igf-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Header */
.igf-header {
  text-align: center;
  margin-bottom: 40px;
}

.igf-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.igf-badge-dot { width: 21px; height: 21px; flex-shrink: 0; }

.igf-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.igf-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.igf-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Carousel */
.igf-carousel-outer {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.igf-carousel-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: igfScroll 30s linear infinite;
}

.igf-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes igfScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Card — image covers full card; header/footer appear on hover */
.igf-card {
  flex-shrink: 0;
  width: 471px;
  height: 500px;
  border: 2px solid #be3933;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  margin: 10px 0;
}

.igf-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(190, 57, 51, 0.25);
  border-color: #fad007;
}

/* Carousel — add vertical padding so scaled cards aren't clipped */
.igf-carousel-track {
  padding: 16px 0;
}

/* Image — fills entire card */
.igf-card-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.igf-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.igf-card:hover .igf-card-image img {
  transform: scale(1.05);
}

/* Dark overlay on hover for readability */
.igf-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0) 25%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 22px;
}

.igf-card:hover::after {
  opacity: 1;
}

/* Header row — hidden by default, slides down on hover */
.igf-card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 12px;
  background: linear-gradient(212.6deg, rgba(0,0,0,0.7) 1%, rgba(0,0,0,0.55) 98.5%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px 22px 0 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.igf-card:hover .igf-card-header {
  opacity: 1;
  transform: translateY(0);
}

.igf-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.igf-avatar {
  width: 23px;
  height: 23px;
  display: block;
}

.igf-username {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.igf-dots {
  width: 16px;
  height: 4px;
  display: block;
  opacity: 0.6;
  cursor: pointer;
}

/* Footer — hidden by default, slides up on hover */
.igf-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 12px;
  background: linear-gradient(212.6deg, rgba(0,0,0,0.7) 1%, rgba(0,0,0,0.55) 98.5%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 22px 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.igf-card:hover .igf-card-footer {
  opacity: 1;
  transform: translateY(0);
}

.igf-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.igf-reactions {
  width: 103px;
  height: 26px;
  display: block;
}

.igf-save {
  width: 21px;
  height: 21px;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.igf-save:hover {
  transform: scale(1.2);
}

.igf-likes {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.igf-caption {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}

.igf-caption strong {
  font-weight: 700;
}

.igf-more {
  color: #aaa;
  font-weight: 500;
}

.igf-time {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 10px;
  color: #ccc;
  text-transform: lowercase;
  letter-spacing: 0.4px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .igf-section { padding: 70px 0 80px; }
  .igf-badge-label { font-size: 24px; }
  .igf-card { width: 360px; height: 400px; }
}

@media (max-width: 575.98px) {
  .igf-badge-label { font-size: 20px; }
  .igf-heading { font-size: 22px; }
  .igf-card { width: 300px; height: 340px; }
  .igf-reactions { width: 80px; height: 20px; }
}

/* ══════════════════════════════════════════════════════════
   27F. FAQ SECTION (Figma 410-34017)
══════════════════════════════════════════════════════════ */
.faq-section {
  position: relative;
  background: #0a0a0a;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Two-column layout */
.faq-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* Left side */
.faq-left {
  flex-shrink: 0;
  width: 400px;
}

.faq-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.faq-badge-dot { width: 21px; height: 21px; flex-shrink: 0; }

.faq-badge-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #fff;
  line-height: 1;
}

.faq-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0;
}

.faq-gradient-text {
  background: linear-gradient(to right, #be3933, #8a4f8e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Right side — accordion */
.faq-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Accordion item */
.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2.8px solid #be3933;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.faq-item:hover {
  border-color: #d76f00;
}

.faq-item--open {
  border-color: #be3933;
  box-shadow: 0 8px 32px rgba(190, 57, 51, 0.15);
}

/* Trigger button */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
}

/* Toggle icons */
.faq-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
  transition: transform 0.35s ease;
}

.faq-icon--minus { display: none; }
.faq-icon--plus  { display: block; }

.faq-item--open .faq-icon--minus { display: block; }
.faq-item--open .faq-icon--plus  { display: none; }

/* Answer panel — animated max-height */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 991.98px) {
  .faq-section { padding: 70px 0 80px; }
  .faq-layout { flex-direction: column; gap: 40px; }
  .faq-left { width: 100%; }
  .faq-badge-label { font-size: 24px; }
  .faq-question { font-size: 18px; }
  .faq-icon { width: 40px; height: 40px; }
}

@media (max-width: 575.98px) {
  .faq-badge-label { font-size: 20px; }
  .faq-heading { font-size: 22px; }
  .faq-question { font-size: 16px; }
  .faq-trigger { padding: 16px; gap: 12px; }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 14px; }
  .faq-icon { width: 36px; height: 36px; }
  .faq-right { gap: 12px; }
}
