:root {
  --bg-dark: #031b2a;
  --hero-dark: rgba(2, 35, 52, 0.78);
  --text-light: #f7faff;
  --accent: #00a399;
  --accent-soft: rgba(0, 163, 153, 0.3);
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(0, 163, 153, 0.25);
}

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

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* ── scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridPan 20s linear infinite;
  opacity: 0.28;
}

.home-hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.22) 0%,
    transparent 68%
  );
  bottom: -150px;
  left: -150px;
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
  pointer-events: none;
}

.home-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
}

.home-hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-sub {
  color: rgba(247, 250, 255, 0.58);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 490px;
  margin: 20px 0 36px;
}

.rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.65);
  margin-top: 28px;
}

.rating-pill .stars i {
  color: #f5a623;
  font-size: 0.72rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
  object-fit: cover;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

/* ② LOGOS STRIP */
.logos-strip {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.logos-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: rgba(247, 250, 255, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 36px 0 24px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  margin-right: 36px;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: scrollLeft 24s linear infinite;
}

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

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(247, 250, 255, 0.18);
  white-space: nowrap;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  cursor: default;
}

.logo-item:hover {
  color: var(--accent);
}

/* ③ FEATURES — alternating icon rows */
.features-alt {
  padding: 100px 0;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}

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

.feat-row.reverse {
  flex-direction: row-reverse;
}

.feat-icon-box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 26px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: var(--accent);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.feat-row:hover .feat-icon-box {
  transform: scale(1.08);
  box-shadow: 0 16px 48px rgba(0, 163, 153, 0.25);
  border-color: var(--accent);
}

.feat-text h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.feat-text p {
  color: rgba(247, 250, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 520px;
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.feat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
}

/* ④ PROCESS */
.process-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    rgba(0, 163, 153, 0.05) 50%,
    var(--bg-dark) 100%
  );
}

.process-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.18);
  border-color: var(--accent);
}

.process-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
  margin: 0 auto 20px;
}

.process-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.process-card:hover .process-num {
  color: var(--accent);
}

.process-card h5 {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  color: rgba(247, 250, 255, 0.52);
  font-size: 0.85rem;
  line-height: 1.75;
}

/* ⑤ TESTIMONIALS */
/* .testimonials-section {
  padding: 100px 0;
} */

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  height: 100%;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.15);
}

.testi-card::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 8rem;
  font-family: "Syne", sans-serif;
  color: var(--accent-soft);
  line-height: 1;
  pointer-events: none;
}

.testi-stars i {
  color: #f5a623;
  font-size: 0.82rem;
}

.testi-text {
  color: rgba(247, 250, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.85;
  margin: 18px 0 24px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.testi-name {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.testi-role {
  font-size: 0.74rem;
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* ⑥ MARQUEE */
.marquee-section {
  padding: 80px 0;
}

.marquee-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 48px;
}

.marquee-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}

.marquee-track.go-left {
  animation: mLeft 32s linear infinite;
}

.marquee-track.go-right {
  animation: mRight 32s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes mLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

.m-card {
  flex: 0 0 auto;
  width: 220px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.m-card:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

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

@media (max-width: 991px) {
  .feat-row,
  .feat-row.reverse {
    flex-direction: column;
    gap: 28px;
  }

  .sf-1,
  .sf-2,
  .sf-3 {
    display: none;
  }
}

@media (max-width: 767px) {
  .stat-item::after {
    display: none;
  }
}
/* ══════════════════════════════════
       NAVBAR  (same as home)
    ══════════════════════════════════ */
.site-header {
  background: rgba(3, 27, 42, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.navbar-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff !important;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-link.active-link {
  color: var(--accent) !important;
}

.head-icon {
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.head-icon:hover {
  color: var(--accent);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.btn-primary:hover {
  background: #008f86;
  border-color: #008f86;
  transform: translateY(-1px);
}

/* ══════════════════════════════════
       REUSABLE HELPERS
    ══════════════════════════════════ */
.badge-pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

.accent-text {
  color: var(--accent);
}

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
       ①  ABOUT HERO
    ══════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* animated grid lines bg */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
  opacity: 0.35;
}

@keyframes gridPan {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 60px 60px;
  }
}

/* glowing orb */
.about-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.28) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

.hero-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.about-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.about-hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

/* .about-hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
} */

.hero-desc {
  color: rgba(247, 250, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
  margin-top: 20px;
}

/* hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-main-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border);
}

.hero-main-img img {
  width: 100%;
  display: block;
}

/* floating stat cards */
.stat-float {
  position: absolute;
  background: rgba(3, 27, 42, 0.9);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 14px 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 163, 153, 0.25);
  z-index: 3;
}

.stat-float .num {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-float .lbl {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.6);
  letter-spacing: 1px;
}

.sf-1 {
  top: 12%;
  left: -60px;
  animation: floatY 4s ease-in-out infinite;
}

.sf-2 {
  bottom: 16%;
  right: -50px;
  animation: floatY 4s ease-in-out infinite 0.8s;
}

.sf-3 {
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
  animation: floatY 5s ease-in-out infinite 1.6s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ══════════════════════════════════
       ②  STORY / MISSION
    ══════════════════════════════════ */
.story-section {
  padding: 100px 0;
  position: relative;
}

.story-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border),
    transparent
  );
}

.story-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.15);
}

.story-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.story-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
  color: var(--accent);
}

.story-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.story-card p {
  color: rgba(247, 250, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ══════════════════════════════════
       ③  STATS COUNTER ROW
    ══════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 153, 0.08) 0%,
    rgba(3, 27, 42, 0) 60%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.stats-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -100px;
  border-radius: 50%;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: var(--border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(247, 250, 255, 0.55);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
       ④  TEAM SECTION
    ══════════════════════════════════ */
/* .team-section {
  padding: 100px 0;
} */

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 163, 153, 0.2);
}

.team-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(30%);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.team-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 27, 42, 0.9) 0%, transparent 55%);
}

.team-overlay-socials {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}

.team-card:hover .team-overlay-socials {
  opacity: 1;
  transform: translateY(0);
}

.team-overlay-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  text-decoration: none;
  transition: background 0.2s;
}

.team-overlay-socials a:hover {
  background: #008f86;
}

.team-info {
  padding: 22px 18px 26px;
}

.team-info h5 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-info small {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════
       ⑤  VALUES / CULTURE
    ══════════════════════════════════ */
.values-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--bg-dark) 0%,
    rgba(0, 163, 153, 0.06) 50%,
    var(--bg-dark) 100%
  );
  position: relative;
  overflow: hidden;
}

.values-section .bg-text {
  position: absolute;
  font-family: "Syne", sans-serif;
  font-size: 14vw;
  font-weight: 800;
  color: rgba(0, 163, 153, 0.04);
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.value-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 44px;
}

.value-item:last-child {
  margin-bottom: 0;
}

.value-num {
  font-family: "Syne", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-soft);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s;
}

.value-item:hover .value-num {
  color: var(--accent);
}

.value-content h5 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.value-content p {
  color: rgba(247, 250, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* visual right block */
.values-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-ring {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: spinSlow 25s linear infinite;
}

@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}

.values-ring::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px dashed var(--accent-soft);
}

.values-ring-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinSlow 25s linear infinite reverse;
  box-shadow: 0 0 60px rgba(0, 163, 153, 0.3);
}

.values-ring-inner i {
  font-size: 3.5rem;
  color: var(--accent);
}

/* orbit dots */
.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.orbit-dot:nth-child(1) {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot:nth-child(2) {
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot:nth-child(3) {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-dot:nth-child(4) {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}

/* ══════════════════════════════════
       CTA STRIP
    ══════════════════════════════════ */
.cta-strip {
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 60%
  );
}

.cta-strip h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin: 0 auto 30px;
}

.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 12px 30px;
  transition: all 0.3s;
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════
       FOOTER  (same tokens)
    ══════════════════════════════════ */
.footer {
  background:
    linear-gradient(rgba(2, 15, 24, 0.904), rgba(2, 15, 24, 0.842)),
    url("https://upspace.wrapcoders.com/frontend/dist/assets/images/demos/ai-intelligence/bg-footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
}

.footer h2 span {
  color: var(--accent);
}

.footer p {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-top: 12px;
}

.footer h4 {
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
  color: rgba(247, 250, 255, 0.8);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  color: rgba(247, 250, 255, 0.45);
  font-size: 0.85rem;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer ul li:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icons i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 250, 255, 0.6);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
}

.social-icons i:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.email-box {
  display: flex;
  margin-top: 14px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.email-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
}

.email-box button {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.email-box button:hover {
  background: #008f86;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid var(--border);
  padding: 18px 0;
  text-align: center;
  color: rgba(247, 250, 255, 0.3);
  font-size: 0.75rem;
}

.footer-bottom span {
  color: var(--accent);
  cursor: pointer;
}

/* ══════════════════════════════════
       RESPONSIVE TWEAKS
    ══════════════════════════════════ */
@media (max-width: 991px) {
  .sf-1,
  .sf-2,
  .sf-3 {
    display: none;
  }

  .values-visual {
    margin-top: 50px;
  }

  .values-ring {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 767px) {
  .stat-item::after {
    display: none;
  }
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
}

/* ────────────────────────────────────────
       SERVICE HERO
    ──────────────────────────────────────── */
.svc-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

.svc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(0, 163, 153, 0.18) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 70%,
      rgba(0, 163, 153, 0.08) 0%,
      transparent 60%
    );
}

.svc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 153, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 153, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    #000 30%,
    transparent 100%
  );
}

.svc-hero-badge {
  margin-bottom: 18px;
}

.svc-hero h1 {
  margin-bottom: 20px;
}

.svc-hero .hero-sub {
  color: rgba(247, 250, 255, 0.55);
  font-size: 0.97rem;
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* floating accent shapes */
.svc-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.svc-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 163, 153, 0.12);
  top: -100px;
  right: -120px;
}

.svc-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 163, 153, 0.08);
  bottom: -60px;
  left: 5%;
}

/* ────────────────────────────────────────
       STATS ROW
    ──────────────────────────────────────── */
.svc-stats {
  background: rgba(0, 163, 153, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.svc-stat-item {
  text-align: center;
  position: relative;
}

.svc-stat-item + .svc-stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}

.svc-stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.svc-stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(247, 250, 255, 0.45);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ────────────────────────────────────────
       SERVICE CARDS GRID
    ──────────────────────────────────────── */
.svc-grid-section {
  padding: 100px 0;
}

.svc-grid-section .intro-sub {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.93rem;
  max-width: 500px;
  margin: 12px auto 0;
}

.svc-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px 32px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    ellipse 60% 60% at 50% -10%,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.15);
}

.svc-card:hover::before {
  opacity: 1;
}

/* featured card */
.svc-card.featured {
  border-color: var(--accent);
  background: linear-gradient(
    145deg,
    rgba(0, 163, 153, 0.12) 0%,
    rgba(3, 27, 42, 0.9) 60%
  );
}

.svc-card.featured::before {
  opacity: 1;
}

.svc-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--accent);
  color: #031b2a;
}

.svc-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 24px;
  transition:
    background 0.3s,
    transform 0.3s;
}

.svc-card:hover .svc-icon-wrap {
  background: var(--accent);
  color: #031b2a;
  transform: rotate(-6deg) scale(1.05);
}

.svc-card h4 {
  font-family: "Syne", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.svc-card p {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.svc-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.svc-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--accent);
  background: var(--accent-soft);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: gap 0.25s;
}

.svc-link:hover {
  gap: 14px;
  color: var(--accent);
}

.svc-link i {
  font-size: 0.75rem;
}

/* card bottom glow line */
.svc-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.svc-card:hover::after,
.svc-card.featured::after {
  opacity: 1;
}

/* ────────────────────────────────────────
       COMPARE TABLE
    ──────────────────────────────────────── */
.svc-compare {
  padding: 0 0 100px;
}

.svc-compare-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.svc-compare-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: rgba(0, 163, 153, 0.06);
  border-bottom: 1px solid var(--border);
  padding: 20px 30px;
  gap: 12px;
}

.svc-compare-head .col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(247, 250, 255, 0.4);
  text-transform: uppercase;
}

.svc-compare-head .col-label.highlight {
  color: var(--accent);
}

.svc-compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 30px;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 163, 153, 0.08);
  align-items: center;
  transition: background 0.2s;
}

.svc-compare-row:last-child {
  border-bottom: none;
}

.svc-compare-row:hover {
  background: rgba(0, 163, 153, 0.04);
}

.svc-compare-feature {
  font-size: 0.875rem;
  color: rgba(247, 250, 255, 0.65);
}

.svc-compare-val {
  text-align: center;
  font-size: 0.85rem;
}

.svc-check {
  color: var(--accent);
  font-size: 1rem;
}

.svc-cross {
  color: rgba(247, 250, 255, 0.2);
  font-size: 0.85rem;
}

.svc-partial {
  color: rgba(247, 250, 255, 0.45);
  font-size: 0.8rem;
}

/* ────────────────────────────────────────
       PROCESS FLOW — horizontal connector
    ──────────────────────────────────────── */
.svc-process {
  padding: 0 0 100px;
}

.svc-process-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.svc-process-wrap::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    var(--accent),
    var(--border),
    transparent
  );
  z-index: 0;
}

.svc-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}

.svc-step-dot {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  color: var(--accent);
  position: relative;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
}

.svc-step:hover .svc-step-dot {
  border-color: var(--accent);
  background: var(--accent-soft);
  transform: scale(1.08);
}

.svc-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #031b2a;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-step h6 {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.svc-step p {
  font-size: 0.8rem;
  color: rgba(247, 250, 255, 0.45);
  line-height: 1.65;
}

/* ────────────────────────────────────────
       INTEGRATION LOGOS
    ──────────────────────────────────────── */
.svc-integrations {
  padding: 0 0 100px;
}

.svc-integ-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}

.svc-integ-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--card-bg);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(247, 250, 255, 0.65);
  letter-spacing: 0.04em;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s,
    transform 0.25s;
  cursor: default;
}

.svc-integ-pill i {
  color: var(--accent);
  font-size: 1rem;
}

.svc-integ-pill:hover {
  border-color: var(--accent);
  color: var(--text-light);
  background: var(--accent-soft);
  transform: translateY(-3px);
}

/* ────────────────────────────────────────
       CTA BAND
    ──────────────────────────────────────── */
.svc-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.svc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 163, 153, 0.14) 0%,
    transparent 70%
  );
}

.svc-cta-border {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.svc-cta-border-b {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.svc-cta h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}

.svc-cta p {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.93rem;
}

/* ────────────────────────────────────────
       REVEAL ANIMATION
    ──────────────────────────────────────── */

/* ────────────────────────────────────────
       RESPONSIVE
    ──────────────────────────────────────── */
@media (max-width: 991px) {
  .svc-process-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .svc-process-wrap::before {
    display: none;
  }

  .svc-compare-head,
  .svc-compare-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .svc-stat-item + .svc-stat-item::before {
    display: none;
  }

  .svc-compare {
    overflow-x: auto;
  }

  .svc-compare-inner {
    min-width: 560px;
  }

  .svc-process-wrap {
    grid-template-columns: 1fr;
  }
}
.txp-page {
  position: relative;
}

.txp-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ════════════════════════════════════
       ① HERO
    ════════════════════════════════════ */
.txp-hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
}

.txp-hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.18) 0%,
    transparent 70%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.txp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 163, 153, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 163, 153, 0.05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(
    ellipse 90% 60% at 50% 50%,
    #000 20%,
    transparent 100%
  );
}

.txp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.4);
  margin-bottom: 58px;
}

.txp-breadcrumb a {
  color: rgba(247, 250, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.txp-breadcrumb a:hover {
  color: var(--accent);
}

.txp-breadcrumb .txp-sep {
  color: var(--accent);
  font-size: 0.6rem;
}

.txp-breadcrumb .txp-cur {
  color: var(--accent);
  font-weight: 600;
}

.txp-hero-title {
  margin: 18px 0 16px;
}

.txp-hero-sub {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.97rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* rating pill row */
.txp-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.txp-r-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
}

.txp-r-pill .txp-stars {
  color: #f5c518;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.txp-r-pill .txp-score {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-light);
}

.txp-r-pill .txp-plat {
  font-size: 0.7rem;
  color: rgba(247, 250, 255, 0.45);
  letter-spacing: 0.08em;
}

/* floating avatars */
.txp-float-av {
  position: absolute;
  border-radius: 50%;
  border: 3px solid var(--accent);
  overflow: hidden;
  pointer-events: none;
}

.txp-float-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.txp-av1 {
  width: 64px;
  height: 64px;
  top: 140px;
  left: 6%;
  animation: txpFloat 5s ease-in-out infinite;
}

.txp-av2 {
  width: 48px;
  height: 48px;
  top: 200px;
  right: 8%;
  animation: txpFloat 6s ease-in-out infinite 0.8s;
}

.txp-av3 {
  width: 56px;
  height: 56px;
  bottom: 60px;
  left: 14%;
  animation: txpFloat 4.5s ease-in-out infinite 0.3s;
}

.txp-av4 {
  width: 40px;
  height: 40px;
  bottom: 80px;
  right: 12%;
  animation: txpFloat 5.5s ease-in-out infinite 1.2s;
}

@keyframes txpFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* ════════════════════════════════════
       ② STATS STRIP
    ════════════════════════════════════ */
.txp-stats-strip {
  background: rgba(0, 163, 153, 0.05);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.txp-st-item {
  text-align: center;
  position: relative;
}

.txp-st-item + .txp-st-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--border);
}

.txp-st-num {
  font-family: "Syne", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.txp-st-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(247, 250, 255, 0.45);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ════════════════════════════════════
       ③ FEATURED WALL  — asymmetric bento
    ════════════════════════════════════ */
.txp-wall {
  padding: 100px 0 0;
}

.txp-wall-title-wrap {
  margin-bottom: 60px;
}

/* bento grid */
.txp-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

/* BASE CARD */
.txp-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s,
    box-shadow 0.35s;
}

.txp-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.txp-card:hover {
  transform: translateY(-7px);
  border-color: var(--accent);
  box-shadow: 0 28px 70px rgba(0, 163, 153, 0.13);
}

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

/* inner glow on hover */
.txp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(
    ellipse 70% 60% at 50% -5%,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.txp-card:hover::before {
  opacity: 1;
}

/* BENTO LAYOUTS */
.txp-b1 {
  grid-column: span 5;
  grid-row: span 1;
}

.txp-b2 {
  grid-column: span 7;
  grid-row: span 1;
}

.txp-b3 {
  grid-column: span 4;
  grid-row: span 1;
}

.txp-b4 {
  grid-column: span 4;
  grid-row: span 1;
}

.txp-b5 {
  grid-column: span 4;
  grid-row: span 1;
}

/* HERO CARD */
.txp-card-hero {
  background: linear-gradient(
    145deg,
    rgba(0, 163, 153, 0.14) 0%,
    rgba(3, 27, 42, 0.9) 70%
  );
  border-color: var(--accent);
}

.txp-card-hero::before {
  opacity: 1;
}

/* big quote mark */
.txp-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.35;
  position: absolute;
  top: 22px;
  right: 28px;
  pointer-events: none;
  user-select: none;
}

.txp-card-hero .txp-quote-mark {
  font-size: 9rem;
  opacity: 0.2;
}

/* stars */
.txp-stars-row {
  color: #f5c518;
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

/* quote text */
.txp-quote {
  font-size: 0.93rem;
  line-height: 1.82;
  color: rgba(247, 250, 255, 0.7);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.txp-card-hero .txp-quote {
  font-size: 1.05rem;
  color: rgba(247, 250, 255, 0.8);
}

/* image card overlay  */
.txp-card-img {
  padding: 0;
  border: none;
  background: none;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
}

.txp-card-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

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

.txp-card-img:hover .txp-card-img-wrap img {
  transform: scale(1.06);
}

.txp-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.95) 0%,
    rgba(3, 27, 42, 0.4) 55%,
    transparent 100%
  );
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* author row */
.txp-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.txp-av-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--accent);
  position: relative;
}

.txp-av-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.txp-av-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.txp-author-name {
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-light);
}

.txp-author-role {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.45);
  margin-top: 2px;
}

/* tag chip */
.txp-chip {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 14px;
  align-self: start;
}

/* metric highlight inside card */
.txp-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(0, 163, 153, 0.1);
  border: 1px solid rgba(0, 163, 153, 0.2);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 20px;
}

.txp-metric .txp-m-num {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.txp-metric .txp-m-lbl {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.5);
}

/* company logo text */
.txp-co-logo {
  font-family: "Syne", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(247, 250, 255, 0.2);
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* ════════════════════════════════════
       ④ HORIZONTAL SCROLL TICKER ROW
    ════════════════════════════════════ */
.txp-ticker {
  padding: 60px 0;
  overflow: hidden;
}

.txp-ticker-track {
  display: flex;
  gap: 16px;
  animation: txpTickerScroll 32s linear infinite;
  width: max-content;
}

.txp-ticker-track.rev {
  animation-direction: reverse;
}

@keyframes txpTickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.txp-ticker-pill {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--card-bg);
  white-space: nowrap;
}

.txp-ticker-pill img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent);
}

.txp-ticker-pill .txp-tp-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.txp-ticker-pill .txp-tp-role {
  font-size: 0.68rem;
  color: rgba(247, 250, 255, 0.4);
}

.txp-ticker-pill .txp-tp-stars {
  color: #f5c518;
  font-size: 0.65rem;
  margin-left: 6px;
}

/* ════════════════════════════════════
       ⑤ MASONRY GRID  — varied heights
    ════════════════════════════════════ */
.txp-masonry {
  padding: 100px 0 100px;
}

.txp-ms-grid {
  columns: 3;
  column-gap: 20px;
}

.txp-ms-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* ms cards reuse .txp-card */
.txp-ms-tall .txp-quote {
  font-size: 0.9rem;
}

.txp-ms-img-card {
  padding: 0;
  background: none;
  border-radius: 22px;
  overflow: hidden;
}

.txp-ms-img-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.5s;
}

.txp-ms-img-card:hover img {
  transform: scale(1.04);
}

.txp-ms-img-caption {
  padding: 20px 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 22px 22px;
}

/* video card */
.txp-video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.txp-video-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.txp-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 27, 42, 0.45);
  transition: background 0.3s;
}

.txp-video-card:hover .txp-play-btn {
  background: rgba(3, 27, 42, 0.3);
}

.txp-play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #031b2a;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  padding-left: 4px;
}

.txp-video-card:hover .txp-play-icon {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(0, 163, 153, 0.5);
}

.txp-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.95) 0%,
    transparent 100%
  );
}

/* ════════════════════════════════════
       ⑥ LOGOS TRUST STRIP
    ════════════════════════════════════ */
.txp-trust {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.txp-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}

.txp-trust-logo {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(247, 250, 255, 0.18);
  transition: color 0.25s;
}

.txp-trust-logo:hover {
  color: var(--accent);
}

.txp-trust-sep {
  color: var(--border);
}

/* ════════════════════════════════════
       ⑦ CTA
    ════════════════════════════════════ */
.txp-cta {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  text-align: center;
}

.txp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 70%
  );
}

.txp-cta-line-t {
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.txp-cta-line-b {
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

/* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
@media (max-width: 1199px) {
  .txp-b1 {
    grid-column: span 6;
  }

  .txp-b2 {
    grid-column: span 6;
  }

  .txp-b3,
  .txp-b4,
  .txp-b5 {
    grid-column: span 4;
  }
}

@media (max-width: 991px) {
  .txp-bento {
    display: flex;
    flex-direction: column;
  }

  .txp-ms-grid {
    columns: 2;
  }

  .txp-float-av {
    display: none;
  }

  .txp-st-item + .txp-st-item::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .txp-ms-grid {
    columns: 1;
  }

  .txp-rating-row {
    flex-direction: column;
    align-items: center;
  }
}
.tmp-dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
}

/* ════════════════════════════════════
       ① HERO
    ════════════════════════════════════ */
.tmp-hero {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}

.tmp-hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
}

.tmp-blob1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 163, 153, 0.13);
  top: -180px;
  right: -100px;
}

.tmp-blob2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 163, 153, 0.08);
  bottom: -100px;
  left: -60px;
}

.tmp-hero-eyebrow {
  margin-bottom: 18px;
}

.tmp-hero-title {
  margin-bottom: 20px;
}

.tmp-hero-sub {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 40px;
}

/* hero stats row */
.tmp-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.tmp-hs-item {
}

.tmp-hs-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.tmp-hs-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(247, 250, 255, 0.4);
  margin-top: 4px;
  text-transform: uppercase;
}

/* hero side — stacked avatar collage */
.tmp-hero-collage {
  position: relative;
  height: 420px;
}

.tmp-hc-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.4s ease;
}

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

.tmp-hc-img:hover {
  transform: scale(1.03) rotate(0deg) !important;
  border-color: var(--accent);
  z-index: 10;
}

.tmp-hci1 {
  width: 200px;
  height: 240px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 3;
}

.tmp-hci2 {
  width: 180px;
  height: 220px;
  top: 20px;
  left: 160px;
  transform: rotate(2.5deg);
  z-index: 2;
}

.tmp-hci3 {
  width: 190px;
  height: 200px;
  top: 180px;
  left: 60px;
  transform: rotate(-1.5deg);
  z-index: 4;
}

.tmp-hci4 {
  width: 160px;
  height: 200px;
  top: 160px;
  left: 240px;
  transform: rotate(3deg);
  z-index: 1;
}

.tmp-hc-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.tmp-hc-badge .tmp-av-mini {
  display: flex;
}

.tmp-hc-badge .tmp-av-mini img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

.tmp-hc-badge .tmp-av-mini img:first-child {
  margin-left: 0;
}

.tmp-hc-badge span {
  font-size: 0.75rem;
  color: rgba(247, 250, 255, 0.7);
  font-weight: 500;
}

.tmp-hc-badge strong {
  color: var(--accent);
}

/* ════════════════════════════════════
       ② VALUES STRIP
    ════════════════════════════════════ */
.tmp-values {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 163, 153, 0.03);
}

.tmp-val-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tmp-val-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.tmp-val-title {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tmp-val-desc {
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.45);
  line-height: 1.6;
}

/* ════════════════════════════════════
       ③ LEADERSHIP — cinematic cards
    ════════════════════════════════════ */
.tmp-leadership {
  padding: 100px 0 0;
}

.tmp-lead-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

/* image fills the card */
.tmp-lead-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.tmp-lead-card:hover .tmp-lead-img {
  transform: scale(1.06);
}

/* gradient overlay always present */
.tmp-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.98) 0%,
    rgba(3, 27, 42, 0.6) 40%,
    rgba(3, 27, 42, 0.1) 75%,
    transparent 100%
  );
  transition: background 0.4s;
}

.tmp-lead-card:hover .tmp-lead-overlay {
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 1) 0%,
    rgba(3, 27, 42, 0.75) 45%,
    rgba(3, 27, 42, 0.2) 75%,
    transparent 100%
  );
}

/* bottom info */
.tmp-lead-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}

.tmp-lead-name {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tmp-lead-role {
  font-size: 0.77rem;
  color: rgba(247, 250, 255, 0.5);
  margin-bottom: 14px;
}

/* socials — hidden, slide up on hover */
.tmp-lead-socials {
  display: flex;
  gap: 10px;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.tmp-lead-card:hover .tmp-lead-socials {
  transform: translateY(0);
  opacity: 1;
}

.tmp-lead-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}

.tmp-lead-socials a:hover {
  background: var(--accent);
  color: #031b2a;
}

/* quote chip that appears on hover */
.tmp-lead-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(247, 250, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.tmp-lead-card:hover .tmp-lead-quote {
  max-height: 80px;
  opacity: 1;
}

/* ════════════════════════════════════
       ④ TEAM GRID — 3-col masonry-feel
    ════════════════════════════════════ */
.tmp-grid-section {
  padding: 80px 0 0;
}

.tmp-member-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition:
    transform 0.38s ease,
    border-color 0.35s,
    box-shadow 0.35s;
}

.tmp-member-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.13);
}

.tmp-mc-img-wrap {
  position: relative;
  overflow: hidden;
}

.tmp-mc-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.tmp-member-card:hover .tmp-mc-img-wrap img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

/* teal scan-line effect on hover */
.tmp-mc-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 163, 153, 0.06) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.tmp-member-card:hover .tmp-mc-scan {
  opacity: 1;
}

.tmp-mc-body {
  padding: 22px 22px 18px;
}

.tmp-mc-name {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 3px;
}

.tmp-mc-role {
  font-size: 0.73rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.tmp-mc-bio {
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 14px;
}

.tmp-mc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tmp-mc-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
}

.tmp-mc-socials {
  display: flex;
  gap: 8px;
}

.tmp-mc-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 250, 255, 0.4);
  font-size: 0.7rem;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.tmp-mc-socials a:hover {
  background: var(--accent);
  color: #031b2a;
  border-color: var(--accent);
}

/* number accent inside card */
.tmp-mc-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(0, 163, 153, 0.5);
  background: rgba(3, 27, 42, 0.8);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ════════════════════════════════════
       ⑤ DEPARTMENT TABS
    ════════════════════════════════════ */
.tmp-dept-tabs {
  padding: 80px 0 60px;
}

.tmp-tab-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.tmp-tab-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(247, 250, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s;
}

.tmp-tab-btn:hover,
.tmp-tab-btn.active {
  background: var(--accent);
  color: #031b2a;
  border-color: var(--accent);
}

.tmp-tab-pane {
  display: none;
}

.tmp-tab-pane.active {
  display: block;
}

/* ════════════════════════════════════
       ⑥ CULTURE SECTION — image mosaic
    ════════════════════════════════════ */
.tmp-culture {
  padding: 0 0 100px;
}

.tmp-culture-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.tmp-cm1 {
  grid-column: span 5;
  grid-row: span 2;
}

.tmp-cm2 {
  grid-column: span 7;
  grid-row: span 1;
}

.tmp-cm3 {
  grid-column: span 3;
  grid-row: span 1;
}

.tmp-cm4 {
  grid-column: span 4;
  grid-row: span 1;
}

.tmp-cm-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.tmp-cm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.tmp-cm-item:hover img {
  transform: scale(1.05);
}

.tmp-cm-item .tmp-cm-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.9) 0%,
    transparent 100%
  );
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.6);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}

.tmp-cm-item:hover .tmp-cm-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
       ⑦ OPEN ROLES STRIP
    ════════════════════════════════════ */
.tmp-roles {
  padding: 0 0 100px;
}

.tmp-role-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  margin-bottom: 12px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tmp-role-row:hover {
  border-color: var(--accent);
  background: rgba(0, 163, 153, 0.05);
  transform: translateX(6px);
  color: inherit;
}

.tmp-role-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}

.tmp-role-title {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.tmp-role-dept {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.4);
  margin-top: 2px;
}

.tmp-role-meta {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.tmp-role-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: rgba(247, 250, 255, 0.5);
}

.tmp-role-arrow {
  color: var(--accent);
  font-size: 0.85rem;
  margin-left: 12px;
  transition: transform 0.25s;
}

.tmp-role-row:hover .tmp-role-arrow {
  transform: translateX(5px);
}

/* ════════════════════════════════════
       ⑧ CTA
    ════════════════════════════════════ */
.tmp-cta {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.tmp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 70%
  );
}

.tmp-cta-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.tmp-cta-line.top {
  top: 0;
}

.tmp-cta-line.bot {
  bottom: 0;
}

@media (max-width: 991px) {
  .tmp-hero-collage {
    display: none;
  }

  .tmp-culture-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .tmp-cm1,
  .tmp-cm2,
  .tmp-cm3,
  .tmp-cm4 {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .tmp-hero-stats {
    gap: 24px;
  }

  .tmp-role-meta {
    display: none;
  }

  .tmp-culture-mosaic {
    grid-template-columns: 1fr;
  }

  .tmp-cm1,
  .tmp-cm2,
  .tmp-cm3,
  .tmp-cm4 {
    height: 180px;
  }
}
.tmp-dotgrid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.07) 1px,
    transparent 1px
  );
  background-size: 36px 36px;
}

/* ════════════════════════════════════
       ① HERO
    ════════════════════════════════════ */
.tmp-hero {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}

.tmp-hero-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
}

.tmp-blob1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 163, 153, 0.13);
  top: -180px;
  right: -100px;
}

.tmp-blob2 {
  width: 350px;
  height: 350px;
  background: rgba(0, 163, 153, 0.08);
  bottom: -100px;
  left: -60px;
}

.tmp-hero-eyebrow {
  margin-bottom: 18px;
}

.tmp-hero-title {
  margin-bottom: 20px;
}

.tmp-hero-sub {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.97rem;
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 40px;
}

/* hero stats row */
.tmp-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.tmp-hs-item {
}

.tmp-hs-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.tmp-hs-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(247, 250, 255, 0.4);
  margin-top: 4px;
  text-transform: uppercase;
}

/* hero side — stacked avatar collage */
.tmp-hero-collage {
  position: relative;
  height: 420px;
}

.tmp-hc-img {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform 0.4s ease;
}

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

.tmp-hc-img:hover {
  transform: scale(1.03) rotate(0deg) !important;
  border-color: var(--accent);
  z-index: 10;
}

.tmp-hci1 {
  width: 200px;
  height: 240px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
  z-index: 3;
}

.tmp-hci2 {
  width: 180px;
  height: 220px;
  top: 20px;
  left: 160px;
  transform: rotate(2.5deg);
  z-index: 2;
}

.tmp-hci3 {
  width: 190px;
  height: 200px;
  top: 180px;
  left: 60px;
  transform: rotate(-1.5deg);
  z-index: 4;
}

.tmp-hci4 {
  width: 160px;
  height: 200px;
  top: 160px;
  left: 240px;
  transform: rotate(3deg);
  z-index: 1;
}

.tmp-hc-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.tmp-hc-badge .tmp-av-mini {
  display: flex;
}

.tmp-hc-badge .tmp-av-mini img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-dark);
  margin-left: -8px;
}

.tmp-hc-badge .tmp-av-mini img:first-child {
  margin-left: 0;
}

.tmp-hc-badge span {
  font-size: 0.75rem;
  color: rgba(247, 250, 255, 0.7);
  font-weight: 500;
}

.tmp-hc-badge strong {
  color: var(--accent);
}

/* ════════════════════════════════════
       ② VALUES STRIP
    ════════════════════════════════════ */
.tmp-values {
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(0, 163, 153, 0.03);
}

.tmp-val-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.tmp-val-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
}

.tmp-val-title {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tmp-val-desc {
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.45);
  line-height: 1.6;
}

/* ════════════════════════════════════
       ③ LEADERSHIP — cinematic cards
    ════════════════════════════════════ */
.tmp-leadership {
  padding: 100px 0 0;
}

.tmp-lead-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

/* image fills the card */
.tmp-lead-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.tmp-lead-card:hover .tmp-lead-img {
  transform: scale(1.06);
}

/* gradient overlay always present */
.tmp-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.98) 0%,
    rgba(3, 27, 42, 0.6) 40%,
    rgba(3, 27, 42, 0.1) 75%,
    transparent 100%
  );
  transition: background 0.4s;
}

.tmp-lead-card:hover .tmp-lead-overlay {
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 1) 0%,
    rgba(3, 27, 42, 0.75) 45%,
    rgba(3, 27, 42, 0.2) 75%,
    transparent 100%
  );
}

/* top badge */
.tmp-lead-dept {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--accent);
}

/* bottom info */
.tmp-lead-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
}

.tmp-lead-name {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}

.tmp-lead-role {
  font-size: 0.77rem;
  color: rgba(247, 250, 255, 0.5);
  margin-bottom: 14px;
}

/* socials — hidden, slide up on hover */
.tmp-lead-socials {
  display: flex;
  gap: 10px;
  transform: translateY(16px);
  opacity: 0;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.tmp-lead-card:hover .tmp-lead-socials {
  transform: translateY(0);
  opacity: 1;
}

.tmp-lead-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.75rem;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s;
}

.tmp-lead-socials a:hover {
  background: var(--accent);
  color: #031b2a;
}

/* quote chip that appears on hover */
.tmp-lead-quote {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(247, 250, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 14px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  opacity: 0;
}

.tmp-lead-card:hover .tmp-lead-quote {
  max-height: 80px;
  opacity: 1;
}

/* ════════════════════════════════════
       ④ TEAM GRID — 3-col masonry-feel
    ════════════════════════════════════ */
.tmp-grid-section {
  padding: 80px 0 0;
}

.tmp-member-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition:
    transform 0.38s ease,
    border-color 0.35s,
    box-shadow 0.35s;
}

.tmp-member-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.13);
}

.tmp-mc-img-wrap {
  position: relative;
  overflow: hidden;
}

.tmp-mc-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition:
    transform 0.5s ease,
    filter 0.4s ease;
}

.tmp-member-card:hover .tmp-mc-img-wrap img {
  transform: scale(1.07);
  filter: grayscale(0%);
}

/* teal scan-line effect on hover */
.tmp-mc-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 163, 153, 0.06) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.tmp-member-card:hover .tmp-mc-scan {
  opacity: 1;
}

.tmp-mc-body {
  padding: 22px 22px 18px;
}

.tmp-mc-name {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 3px;
}

.tmp-mc-role {
  font-size: 0.73rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.tmp-mc-bio {
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.45);
  line-height: 1.65;
  margin-bottom: 14px;
}

.tmp-mc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tmp-mc-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
}

.tmp-mc-socials {
  display: flex;
  gap: 8px;
}

.tmp-mc-socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 250, 255, 0.4);
  font-size: 0.7rem;
  text-decoration: none;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

.tmp-mc-socials a:hover {
  background: var(--accent);
  color: #031b2a;
  border-color: var(--accent);
}

/* number accent inside card */
.tmp-mc-num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: "Syne", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(0, 163, 153, 0.5);
  background: rgba(3, 27, 42, 0.8);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
}

/* ════════════════════════════════════
       ⑤ DEPARTMENT TABS
    ════════════════════════════════════ */
.tmp-dept-tabs {
  padding: 80px 0 60px;
}

.tmp-tab-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.tmp-tab-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(247, 250, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s;
}

.tmp-tab-btn:hover,
.tmp-tab-btn.active {
  background: var(--accent);
  color: #031b2a;
  border-color: var(--accent);
}

.tmp-tab-pane {
  display: none;
}

.tmp-tab-pane.active {
  display: block;
}

/* ════════════════════════════════════
       ⑥ CULTURE SECTION — image mosaic
    ════════════════════════════════════ */
.tmp-culture {
  padding: 0 0 100px;
}

.tmp-culture-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 14px;
}

.tmp-cm1 {
  grid-column: span 5;
  grid-row: span 2;
}

.tmp-cm2 {
  grid-column: span 7;
  grid-row: span 1;
}

.tmp-cm3 {
  grid-column: span 3;
  grid-row: span 1;
}

.tmp-cm4 {
  grid-column: span 4;
  grid-row: span 1;
}

.tmp-cm-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.tmp-cm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.tmp-cm-item:hover img {
  transform: scale(1.05);
}

.tmp-cm-item .tmp-cm-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(
    to top,
    rgba(3, 27, 42, 0.9) 0%,
    transparent 100%
  );
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.6);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s,
    transform 0.35s;
}

.tmp-cm-item:hover .tmp-cm-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════
       ⑦ OPEN ROLES STRIP
    ════════════════════════════════════ */
.tmp-roles {
  padding: 0 0 100px;
}

.tmp-role-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card-bg);
  margin-bottom: 12px;
  transition:
    border-color 0.3s,
    background 0.3s,
    transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.tmp-role-row:hover {
  border-color: var(--accent);
  background: rgba(0, 163, 153, 0.05);
  transform: translateX(6px);
  color: inherit;
}

.tmp-role-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
}

.tmp-role-title {
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
}

.tmp-role-dept {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.4);
  margin-top: 2px;
}

.tmp-role-meta {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.tmp-role-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: rgba(247, 250, 255, 0.5);
}

.tmp-role-arrow {
  color: var(--accent);
  font-size: 0.85rem;
  margin-left: 12px;
  transition: transform 0.25s;
}

.tmp-role-row:hover .tmp-role-arrow {
  transform: translateX(5px);
}

/* ════════════════════════════════════
       ⑧ CTA
    ════════════════════════════════════ */
.tmp-cta {
  position: relative;
  padding: 90px 0;
  text-align: center;
  overflow: hidden;
}

.tmp-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(0, 163, 153, 0.12) 0%,
    transparent 70%
  );
}

.tmp-cta-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.tmp-cta-line.top {
  top: 0;
}

.tmp-cta-line.bot {
  bottom: 0;
}

.tmp-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #031b2a;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.tmp-btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 163, 153, 0.4);
  color: #031b2a;
}

.tmp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 14px 38px;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}

.tmp-btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text-light);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .tmp-hero-collage {
    display: none;
  }

  .tmp-culture-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .tmp-cm1,
  .tmp-cm2,
  .tmp-cm3,
  .tmp-cm4 {
    grid-column: span 1;
    grid-row: span 1;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .tmp-hero-stats {
    gap: 24px;
  }

  .tmp-role-meta {
    display: none;
  }

  .tmp-culture-mosaic {
    grid-template-columns: 1fr;
  }

  .tmp-cm1,
  .tmp-cm2,
  .tmp-cm3,
  .tmp-cm4 {
    height: 180px;
  }
}
.contact-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridPan 20s linear infinite;
  opacity: 0.25;
}

.contact-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.2) 0%,
    transparent 68%
  );
  top: -180px;
  right: -150px;
  border-radius: 50%;
  animation: pulse 7s ease-in-out infinite;
  pointer-events: none;
}

.contact-hero h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.contact-hero p {
  color: rgba(247, 250, 255, 0.55);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 500px;
  margin-top: 16px;
}

/* ── CONTACT INFO CARDS ── */
.contact-info-section {
  padding: 80px 0 0;
}

.c-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
}

.c-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.c-info-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0, 163, 153, 0.18);
  border-color: var(--accent);
}

.c-info-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  color: var(--accent) !important;
  margin: 0 auto 20px !important;
  transition: transform 0.3s !important;
}

.c-info-card:hover .c-info-icon {
  transform: scale(1.1);
}

.c-info-card h5 {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.c-info-card p {
  color: rgba(247, 250, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

.c-info-card a {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px !important;
  letter-spacing: 0.5px;
  transition: opacity 0.2s;
}

.c-info-card a:hover {
  opacity: 0.75;
}

/* ── FORM + MAP SECTION ── */
.contact-main {
  padding: 80px 0 0px;
}

/* FORM CARD */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.form-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(0, 163, 153, 0.1) 0%,
    transparent 70%
  );
  bottom: -80px;
  right: -80px;
  border-radius: 50%;
  pointer-events: none;
}

.form-card h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-card .form-sub {
  color: rgba(247, 250, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

/* custom inputs */
.c-input-group {
  margin-bottom: 20px;
}

.c-input-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(247, 250, 255, 0.5);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.c-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 18px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.c-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 163, 153, 0.15);
}

.c-input::placeholder {
  color: rgba(247, 250, 255, 0.25);
}

textarea.c-input {
  resize: vertical;
  min-height: 130px;
}

/* service select pills */
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.s-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(247, 250, 255, 0.5);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.s-pill:hover,
.s-pill.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* submit */
.btn-submit {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 15px;
  margin-top: 8px;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-submit:hover {
  background: #008f86;
  transform: translateY(-2px);
}

.btn-submit:hover::before {
  transform: translateX(100%);
}

/* MAP SIDE */
.map-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.map-frame-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  flex: 1;
  min-height: 340px;
  position: relative;
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  display: block;
  border: none;
  filter: invert(90%) hue-rotate(175deg) saturate(1.2) brightness(0.85);
}

/* map overlay badge */
.map-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(3, 27, 42, 0.92);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-badge i {
  color: var(--accent);
  font-size: 1.2rem;
}

.map-badge .mb-title {
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.map-badge .mb-sub {
  font-size: 0.72rem;
  color: rgba(247, 250, 255, 0.5);
}

/* availability card */
.avail-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.avail-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.avail-card .av-title {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.avail-card .av-sub {
  font-size: 0.78rem;
  color: rgba(247, 250, 255, 0.5);
}

/* ── FAQ STRIP ── */
.faq-section {
  padding: 80px 0 100px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q span {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  color: rgba(247, 250, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding-top: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 14px;
}

@media (max-width: 991px) {
  .form-card {
    padding: 32px 24px;
  }

  .map-frame-wrap {
    min-height: 280px;
  }

  .map-frame-wrap iframe {
    min-height: 280px;
  }
}
