/* ==============================================
   GLOBAL MLM SOFTWARE — OUR TEAM PAGE
   our-team.css  |  v1.0
   Theme: Rose-Pink / Violet / Dark-Slate
   Namespace: .ot-* (Our Team page)
   ============================================== */

/* ===========================
   CSS VARIABLES
   =========================== */
:root {
  --ot-primary:       #e11d48;
  --ot-primary-dark:  #be123c;
  --ot-primary-light: #fda4af;
  --ot-violet:        #7c3aed;
  --ot-violet-light:  #c4b5fd;
  --ot-amber:         #f59e0b;
  --ot-teal:          #0d9488;
  --ot-sky:           #0ea5e9;
  --ot-slate:         #0f172a;
  --ot-slate-2:       #1e293b;
  --ot-slate-3:       #263248;
  --ot-card-bg:       #ffffff;
  --ot-card-border:   #ffe4e6;
  --ot-text:          #0f172a;
  --ot-text-muted:    #64748b;
  --ot-text-light:    #94a3b8;
  --ot-radius-sm:     8px;
  --ot-radius-md:     14px;
  --ot-radius-lg:     22px;
  --ot-radius-xl:     32px;
  --ot-shadow-sm:     0 1px 4px rgba(225,29,72,.10);
  --ot-shadow-md:     0 4px 20px rgba(225,29,72,.14);
  --ot-shadow-lg:     0 12px 42px rgba(225,29,72,.18);
  --ot-shadow-xl:     0 24px 80px rgba(225,29,72,.22);
  --ot-transition:    0.26s cubic-bezier(0.4,0,0.2,1);
  --ot-gradient:      linear-gradient(135deg,#e11d48 0%,#7c3aed 60%,#0ea5e9 100%);
  --ot-hero-grad:     linear-gradient(155deg,#0f172a 0%,#1e293b 35%,#2d1b4e 65%,#3b0a20 100%);
}

/* ===========================
   RESET / BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--ot-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.ot-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   UTILITY
   =========================== */
.ot-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg,rgba(225,29,72,.10),rgba(124,58,237,.10));
  color: var(--ot-primary);
  border: 1px solid rgba(225,29,72,.22);
  margin-bottom: 14px;
}
.ot-section-tag.white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.ot-gradient-text {
  background: var(--ot-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.ot-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--ot-radius-md);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--ot-transition);
  text-decoration: none;
}
.ot-btn-primary {
  background: var(--ot-gradient);
  color: #fff;
  box-shadow: var(--ot-shadow-md);
}
.ot-btn-primary:hover { transform: translateY(-2px); box-shadow: var(--ot-shadow-lg); filter: brightness(1.08); }
.ot-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.45);
}
.ot-btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.ot-btn-ghost {
  background: rgba(225,29,72,.08);
  color: var(--ot-primary);
  border: 2px solid rgba(225,29,72,.22);
}
.ot-btn-ghost:hover { background: var(--ot-primary); color: #fff; }
.ot-btn-lg  { padding: 15px 34px; font-size: 1rem; }
.ot-btn-xl  { padding: 18px 44px; font-size: 1.05rem; border-radius: var(--ot-radius-lg); }
.ot-btn-full { width: 100%; justify-content: center; }
.ot-btn-whatsapp { background: #25d366; color: #fff; }
.ot-btn-whatsapp:hover { background: #20ba5a; transform: translateY(-2px); }

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes ot-fadeUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes ot-fadeLeft { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes ot-pulse    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes ot-float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes ot-spin     { from{transform:rotate(0)} to{transform:rotate(360deg)} }
@keyframes ot-glow     {
  0%,100%{ box-shadow:0 0 20px rgba(225,29,72,.25); }
  50%    { box-shadow:0 0 40px rgba(225,29,72,.5); }
}
@keyframes ot-shimmer  {
  0%  { background-position:-200% center; }
  100%{ background-position: 200% center; }
}

.ot-anim-up   { animation: ot-fadeUp   .7s ease both; }
.ot-anim-left { animation: ot-fadeLeft .7s ease both; }
.ot-d1 { animation-delay:.1s } .ot-d2 { animation-delay:.2s }
.ot-d3 { animation-delay:.3s } .ot-d4 { animation-delay:.4s }
.ot-d5 { animation-delay:.5s }

/* ===========================
   BREADCRUMB
   =========================== */
.ot-breadcrumb {
  background: rgba(15,23,42,.95);
  border-bottom: 1px solid rgba(225,29,72,.15);
  padding: 12px 0;
}
.ot-breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.ot-breadcrumb-inner a { color: rgba(255,255,255,.5); transition: var(--ot-transition); }
.ot-breadcrumb-inner a:hover { color: #fda4af; }
.ot-breadcrumb-inner i { font-size: .6rem; color: rgba(255,255,255,.3); }
.ot-breadcrumb-current { color: #fda4af; font-weight: 600; }

/* ===========================
   HERO
   =========================== */
.ot-hero {
  background: var(--ot-hero-grad);
  min-height: 82vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.ot-hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ot-hero-shapes .sh {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .16;
}
.ot-hero-shapes .sh-1 { width:700px;height:700px;background:radial-gradient(#e11d48,transparent);top:-250px;left:-200px; }
.ot-hero-shapes .sh-2 { width:500px;height:500px;background:radial-gradient(#7c3aed,transparent);top:50px;right:-180px; }
.ot-hero-shapes .sh-3 { width:400px;height:400px;background:radial-gradient(#0ea5e9,transparent);bottom:-100px;left:45%; }
.ot-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(225,29,72,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,29,72,.06) 1px, transparent 1px);
  background-size: 50px 50px;
}
.ot-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero Copy */
.ot-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(225,29,72,.15);
  border: 1px solid rgba(225,29,72,.35);
  color: #fda4af;
  font-size: .78rem; font-weight: 600;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 20px; letter-spacing: .05em;
}
.ot-hero-badge i { color: #fb7185; font-size: .7rem; animation: ot-pulse 2s infinite; }
.ot-hero h1 {
  font-size: clamp(2rem,3.4vw,3.1rem);
  font-weight: 900; line-height: 1.12; color: #fff;
  margin-bottom: 20px;
}
.ot-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  margin-bottom: 32px; max-width: 560px;
}
.ot-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.ot-hero-trust { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.ot-trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: .8rem; color: rgba(255,255,255,.78); font-weight: 500;
}
.ot-trust-pill i { color: #fb7185; font-size: .72rem; }

/* Hero Visual — org-chart */
.ot-hero-visual { position: relative; }
.ot-org-chart {
  background: linear-gradient(135deg,rgba(225,29,72,.14),rgba(124,58,237,.1));
  border: 1px solid rgba(225,29,72,.3);
  border-radius: var(--ot-radius-xl);
  padding: 28px 24px;
  backdrop-filter: blur(12px);
}
.ot-org-title {
  color: #fda4af; font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
/* CEO row */
.ot-org-ceo { display: flex; justify-content: center; margin-bottom: 0; }
.ot-org-node {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(225,29,72,.3);
  border-radius: var(--ot-radius-md);
  padding: 12px 16px; text-align: center;
  min-width: 120px;
  transition: var(--ot-transition);
}
.ot-org-node:hover { background: rgba(225,29,72,.12); border-color: rgba(225,29,72,.5); }
.ot-org-node.ceo { border-color: rgba(225,29,72,.6); background: rgba(225,29,72,.15); }
.ot-org-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; margin: 0 auto 8px;
  color: #fff;
}
.ot-org-avatar.red    { background: linear-gradient(135deg,#e11d48,#be123c); }
.ot-org-avatar.violet { background: linear-gradient(135deg,#7c3aed,#5b21b6); }
.ot-org-avatar.teal   { background: linear-gradient(135deg,#0d9488,#0f766e); }
.ot-org-avatar.sky    { background: linear-gradient(135deg,#0ea5e9,#0284c7); }
.ot-org-avatar.amber  { background: linear-gradient(135deg,#f59e0b,#d97706); }
.ot-org-avatar.rose   { background: linear-gradient(135deg,#f43f5e,#e11d48); }
.ot-org-name  { font-size: .72rem; font-weight: 700; color: #fff; }
.ot-org-role  { font-size: .65rem; color: rgba(255,255,255,.5); margin-top: 2px; }
/* connector lines */
.ot-org-connector {
  display: flex; justify-content: center;
  height: 24px; position: relative;
}
.ot-org-connector::before {
  content: '';
  width: 2px; height: 100%;
  background: linear-gradient(#e11d48,rgba(225,29,72,.3));
  display: block;
}
.ot-org-h-line {
  position: relative; height: 2px;
  background: linear-gradient(90deg,transparent,rgba(225,29,72,.4),transparent);
  margin: 0 0 0; display: flex;
}
.ot-org-row {
  display: flex; justify-content: center; gap: 12px;
}
.ot-org-col { display: flex; flex-direction: column; align-items: center; flex: 1; }
.ot-org-col-connector {
  width: 2px; height: 18px;
  background: linear-gradient(rgba(225,29,72,.5),rgba(225,29,72,.2));
  margin: 0 auto;
}
.ot-org-top-line {
  width: 100%; height: 2px;
  background: rgba(225,29,72,.35);
  margin-bottom: 0;
}

/* Stats mini bar inside hero card */
.ot-hero-stats-bar {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 16px;
}
.ot-hs-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 10px 8px; text-align: center;
}
.ot-hs-num { font-size: 1.1rem; font-weight: 900; color: #fda4af; line-height: 1; }
.ot-hs-lbl { font-size: .64rem; color: rgba(255,255,255,.5); margin-top: 3px; }

/* ===========================
   STATS RIBBON
   =========================== */
.ot-stats-ribbon {
  background: linear-gradient(135deg,#e11d48 0%,#be123c 50%,#9f1239 100%);
  padding: 50px 0; position: relative; overflow: hidden;
}
.ot-stats-ribbon::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='25' cy='25' r='2' fill='%23fff' fill-opacity='0.05'/%3E%3C/svg%3E");
}
.ot-stats-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 24px; position: relative;
}
.ot-stat-item { text-align: center; }
.ot-stat-icon { font-size: 1.4rem; color: #fda4af; margin-bottom: 8px; }
.ot-stat-num {
  font-size: clamp(1.8rem,2.5vw,2.6rem);
  font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px;
}
.ot-stat-lbl { font-size: .82rem; color: rgba(255,255,255,.75); font-weight: 500; }

/* ===========================
   SECTION COMMON
   =========================== */
.ot-section { padding: 90px 0; }
.ot-section-alt { background: #fafbff; }
.ot-section-dark { background: var(--ot-slate); color: #fff; }

.ot-section-header { text-align: center; margin-bottom: 56px; }
.ot-section-header h2 {
  font-size: clamp(1.7rem,2.8vw,2.5rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 14px; color: var(--ot-text);
}
.ot-section-dark .ot-section-header h2 { color: #fff; }
.ot-section-header p { font-size: 1rem; color: var(--ot-text-muted); max-width: 620px; margin: 0 auto; }
.ot-section-dark .ot-section-header p { color: rgba(255,255,255,.65); }

/* ===========================
   DEPARTMENT FILTER TABS
   =========================== */
.ot-dept-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 48px;
}
.ot-dept-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 50px;
  font-size: .82rem; font-weight: 600;
  border: 2px solid var(--ot-card-border);
  background: var(--ot-card-bg);
  color: var(--ot-text-muted);
  cursor: pointer; transition: var(--ot-transition);
}
.ot-dept-btn:hover, .ot-dept-btn.active {
  border-color: var(--ot-primary);
  color: var(--ot-primary);
  background: rgba(225,29,72,.06);
}
.ot-dept-btn.active {
  background: var(--ot-primary);
  color: #fff;
  border-color: var(--ot-primary);
  box-shadow: var(--ot-shadow-md);
}
.ot-dept-count {
  background: rgba(255,255,255,.3);
  color: inherit;
  font-size: .68rem; font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
}
.ot-dept-btn.active .ot-dept-count { background: rgba(255,255,255,.25); }

/* ===========================
   TEAM GRID
   =========================== */
.ot-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Individual team card */
.ot-team-card {
  background: var(--ot-card-bg);
  border: 1px solid var(--ot-card-border);
  border-radius: var(--ot-radius-xl);
  overflow: hidden;
  transition: var(--ot-transition);
  position: relative;
}
.ot-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ot-shadow-lg);
  border-color: rgba(225,29,72,.35);
}
.ot-card-top {
  background: var(--ot-hero-grad);
  padding: 28px 20px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ot-card-top::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(225,29,72,.2) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(124,58,237,.15) 0%, transparent 50%);
}
.ot-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  margin: 0 auto 12px;
  position: relative; z-index: 1;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}
.ot-avatar.grad-1 { background: linear-gradient(135deg,#e11d48,#7c3aed); }
.ot-avatar.grad-2 { background: linear-gradient(135deg,#7c3aed,#0ea5e9); }
.ot-avatar.grad-3 { background: linear-gradient(135deg,#0d9488,#0ea5e9); }
.ot-avatar.grad-4 { background: linear-gradient(135deg,#f59e0b,#e11d48); }
.ot-avatar.grad-5 { background: linear-gradient(135deg,#e11d48,#f59e0b); }
.ot-avatar.grad-6 { background: linear-gradient(135deg,#0ea5e9,#0d9488); }
.ot-avatar.grad-7 { background: linear-gradient(135deg,#7c3aed,#e11d48); }
.ot-avatar.grad-8 { background: linear-gradient(135deg,#0d9488,#7c3aed); }

.ot-card-name {
  font-size: .98rem; font-weight: 800; color: #fff;
  position: relative; z-index: 1; margin-bottom: 3px;
}
.ot-card-role {
  font-size: .72rem; color: #fda4af; font-weight: 600;
  position: relative; z-index: 1;
}
.ot-card-dept-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 50px;
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.25);
}

.ot-card-body { padding: 18px 20px 22px; }
.ot-card-bio {
  font-size: .82rem; color: var(--ot-text-muted);
  line-height: 1.7; margin-bottom: 14px;
}
.ot-card-skills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.ot-skill-tag {
  font-size: .66rem; font-weight: 600; padding: 3px 9px;
  border-radius: 50px; background: rgba(225,29,72,.07);
  color: var(--ot-primary); border: 1px solid rgba(225,29,72,.18);
}
.ot-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--ot-card-border);
  padding-top: 12px; margin-top: 4px;
}
.ot-card-exp {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; color: var(--ot-text-light); font-weight: 500;
}
.ot-card-exp i { color: var(--ot-amber); }
.ot-card-socials { display: flex; gap: 6px; }
.ot-social-ico {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(225,29,72,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--ot-primary); font-size: .72rem;
  border: 1px solid rgba(225,29,72,.15);
  transition: var(--ot-transition);
}
.ot-social-ico:hover { background: var(--ot-primary); color: #fff; border-color: var(--ot-primary); }

/* ===========================
   LEADERSHIP SPOTLIGHT
   =========================== */
.ot-leadership {
  background: var(--ot-slate);
  padding: 90px 0;
}
.ot-leadership-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
.ot-leader-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(225,29,72,.2);
  border-radius: var(--ot-radius-xl);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  transition: var(--ot-transition);
}
.ot-leader-card:hover {
  background: rgba(225,29,72,.07);
  border-color: rgba(225,29,72,.4);
  transform: translateY(-4px);
}
.ot-leader-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; flex-shrink: 0;
  box-shadow: 0 6px 28px rgba(225,29,72,.3);
}
.ot-leader-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ot-leader-role { font-size: .78rem; color: #fda4af; font-weight: 600; margin-bottom: 12px; }
.ot-leader-bio { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 14px; }
.ot-leader-highlights {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.ot-lh-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .72rem; color: rgba(255,255,255,.6); font-weight: 500;
}
.ot-lh-item i { color: #fb7185; font-size: .65rem; }
.ot-leader-quote {
  margin-top: 14px; padding: 12px 16px;
  background: rgba(225,29,72,.1);
  border-left: 3px solid var(--ot-primary);
  border-radius: 0 var(--ot-radius-sm) var(--ot-radius-sm) 0;
}
.ot-leader-quote p { font-size: .8rem; font-style: italic; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ===========================
   CULTURE / VALUES SECTION
   =========================== */
.ot-culture-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.ot-culture-content h2 {
  font-size: clamp(1.7rem,2.5vw,2.4rem);
  font-weight: 900; margin-bottom: 18px;
}
.ot-culture-content p {
  font-size: 1rem; color: var(--ot-text-muted);
  margin-bottom: 18px; line-height: 1.8;
}
.ot-culture-values {
  display: flex; flex-direction: column; gap: 14px; margin-top: 10px;
}
.ot-cv-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(225,29,72,.05);
  border: 1px solid rgba(225,29,72,.12);
  border-radius: var(--ot-radius-md);
  transition: var(--ot-transition);
}
.ot-cv-item:hover {
  background: rgba(225,29,72,.09);
  border-color: rgba(225,29,72,.28);
  transform: translateX(4px);
}
.ot-cv-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg,var(--ot-primary),var(--ot-violet));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .9rem; flex-shrink: 0;
}
.ot-cv-text h4 { font-size: .88rem; font-weight: 700; margin-bottom: 4px; }
.ot-cv-text p  { font-size: .78rem; color: var(--ot-text-muted); }

/* Culture Visual */
.ot-culture-visual {
  position: relative;
  display: flex; flex-direction: column; gap: 14px;
}
.ot-perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ot-perk-card {
  background: var(--ot-card-bg);
  border: 1px solid var(--ot-card-border);
  border-radius: var(--ot-radius-lg);
  padding: 20px 16px; text-align: center;
  transition: var(--ot-transition);
}
.ot-perk-card:hover { transform: translateY(-4px); box-shadow: var(--ot-shadow-md); border-color: rgba(225,29,72,.3); }
.ot-perk-icon { font-size: 1.8rem; margin-bottom: 10px; background: var(--ot-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ot-perk-card h4 { font-size: .82rem; font-weight: 700; margin-bottom: 4px; }
.ot-perk-card p  { font-size: .72rem; color: var(--ot-text-muted); }

/* Work culture banner */
.ot-culture-banner {
  background: linear-gradient(135deg,rgba(225,29,72,.1),rgba(124,58,237,.08));
  border: 1px solid rgba(225,29,72,.2);
  border-radius: var(--ot-radius-lg);
  padding: 22px 20px;
  text-align: center;
}
.ot-culture-banner h4 { font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.ot-culture-banner p  { font-size: .82rem; color: var(--ot-text-muted); }

/* ===========================
   DEPARTMENTS OVERVIEW
   =========================== */
.ot-dept-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.ot-dept-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(225,29,72,.18);
  border-radius: var(--ot-radius-xl);
  padding: 28px 24px;
  transition: var(--ot-transition);
  position: relative; overflow: hidden;
}
.ot-dept-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--ot-gradient);
}
.ot-dept-card:hover {
  background: rgba(225,29,72,.07);
  border-color: rgba(225,29,72,.38);
  transform: translateY(-5px);
}
.ot-dept-icon {
  width: 52px; height: 52px; border-radius: var(--ot-radius-md);
  background: linear-gradient(135deg,var(--ot-primary),var(--ot-violet));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; margin-bottom: 16px;
}
.ot-dept-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ot-dept-card p  { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 14px; }
.ot-dept-count-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; color: #fda4af;
  background: rgba(225,29,72,.12);
  padding: 4px 10px; border-radius: 50px;
  border: 1px solid rgba(225,29,72,.25);
}

/* ===========================
   HIRING SECTION
   =========================== */
.ot-hiring {
  background: linear-gradient(135deg,var(--ot-slate) 0%,var(--ot-slate-2) 50%,#1a0a2e 100%);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.ot-hiring::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%,rgba(225,29,72,.14) 0%,transparent 60%),
              radial-gradient(ellipse at 70% 50%,rgba(124,58,237,.1) 0%,transparent 60%);
}
.ot-jobs-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  position: relative;
}
.ot-job-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(225,29,72,.2);
  border-radius: var(--ot-radius-lg);
  padding: 24px 22px;
  transition: var(--ot-transition);
}
.ot-job-card:hover {
  background: rgba(225,29,72,.08);
  border-color: rgba(225,29,72,.4);
  transform: translateY(-4px);
}
.ot-job-dept {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #fda4af; margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.ot-job-title { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.ot-job-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.ot-job-tag {
  font-size: .68rem; font-weight: 600;
  padding: 3px 9px; border-radius: 50px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; gap: 4px;
}
.ot-job-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 16px; }
.ot-job-apply {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 700; color: #fda4af;
  border-bottom: 2px solid transparent;
  transition: var(--ot-transition);
  cursor: pointer;
}
.ot-job-apply:hover { border-color: #fda4af; }

/* ===========================
   TESTIMONIALS (team quotes)
   =========================== */
.ot-testimonials { padding: 90px 0; background: #fafbff; }
.ot-testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.ot-testi-card {
  background: var(--ot-card-bg);
  border: 1px solid var(--ot-card-border);
  border-radius: var(--ot-radius-xl);
  padding: 28px 24px;
  transition: var(--ot-transition);
  position: relative;
}
.ot-testi-card:hover { transform: translateY(-4px); box-shadow: var(--ot-shadow-lg); border-color: rgba(225,29,72,.35); }
.ot-quote-icon { font-size: 2rem; color: rgba(225,29,72,.12); margin-bottom: 12px; }
.ot-testi-text { font-size: .87rem; color: var(--ot-text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.ot-testi-author { display: flex; align-items: center; gap: 12px; }
.ot-testi-av {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.ot-testi-name { font-size: .88rem; font-weight: 700; }
.ot-testi-role { font-size: .74rem; color: var(--ot-text-muted); }
.ot-testi-tenure { font-size: .7rem; color: var(--ot-primary); font-weight: 600; margin-top: 2px; }

/* ===========================
   FAQ
   =========================== */
.ot-faq { padding: 90px 0; }
.ot-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ot-faq-col  { display: flex; flex-direction: column; gap: 14px; }
.ot-faq-item {
  border: 1px solid var(--ot-card-border);
  border-radius: var(--ot-radius-md);
  overflow: hidden; background: var(--ot-card-bg);
  transition: var(--ot-transition);
}
.ot-faq-item.open { border-color: rgba(225,29,72,.35); }
.ot-faq-q {
  width: 100%; background: none; border: none;
  padding: 18px 20px; text-align: left;
  font-size: .9rem; font-weight: 700;
  color: var(--ot-text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ot-faq-q:hover { color: var(--ot-primary); }
.ot-faq-item.open .ot-faq-q { color: var(--ot-primary); }
.ot-faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--ot-card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--ot-text-muted);
  flex-shrink: 0; transition: var(--ot-transition);
}
.ot-faq-item.open .ot-faq-icon {
  background: var(--ot-primary); border-color: var(--ot-primary);
  color: #fff; transform: rotate(180deg);
}
.ot-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 20px;
}
.ot-faq-item.open .ot-faq-a { max-height: 400px; padding: 0 20px 18px; }
.ot-faq-a p { font-size: .875rem; color: var(--ot-text-muted); line-height: 1.75; }

/* ===========================
   CTA / DEMO FORM
   =========================== */
.ot-cta-section {
  background: var(--ot-hero-grad);
  padding: 90px 0;
  position: relative; overflow: hidden;
}
.ot-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%,rgba(225,29,72,.2) 0%,transparent 60%),
              radial-gradient(ellipse at 75% 50%,rgba(124,58,237,.15) 0%,transparent 60%);
}
.ot-cta-wrapper {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.ot-cta-copy h2 { font-size: clamp(1.7rem,2.5vw,2.4rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.ot-cta-copy p   { color: rgba(255,255,255,.72); margin-bottom: 20px; line-height: 1.8; }
.ot-cta-benefits  { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ot-cta-benefits li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: rgba(255,255,255,.8); }
.ot-cta-benefits li i { color: #fb7185; font-size: .8rem; }
.ot-cta-contacts { display: flex; flex-direction: column; gap: 10px; }
.ot-cc-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.68); }
.ot-cc-item i { color: var(--ot-amber); width: 16px; }
.ot-cc-item a { color: rgba(255,255,255,.78); transition: var(--ot-transition); }
.ot-cc-item a:hover { color: var(--ot-amber); }

/* Form */
.ot-form-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(225,29,72,.22);
  border-radius: var(--ot-radius-xl);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.ot-form-card h3 { font-size: 1.22rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.ot-form-subtitle { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.ot-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ot-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.ot-form-group label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.68); }
.ot-form-group input, .ot-form-group select, .ot-form-group textarea {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(225,29,72,.22);
  border-radius: var(--ot-radius-sm);
  padding: 11px 14px; font-size: .88rem;
  color: #fff; outline: none;
  transition: var(--ot-transition); font-family: inherit; width: 100%;
}
.ot-form-group input::placeholder, .ot-form-group textarea::placeholder { color: rgba(255,255,255,.28); }
.ot-form-group input:focus, .ot-form-group select:focus, .ot-form-group textarea:focus {
  border-color: var(--ot-primary);
  background: rgba(225,29,72,.09);
  box-shadow: 0 0 0 3px rgba(225,29,72,.18);
}
.ot-form-group select option { background: #1e293b; color: #fff; }
.ot-error-msg { font-size: .72rem; color: #f87171; margin-top: 2px; min-height: 16px; }
.ot-form-privacy {
  font-size: .72rem; color: rgba(255,255,255,.38); text-align: center;
  margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.ot-form-success { text-align: center; padding: 40px 20px; }
.ot-form-success i { font-size: 3rem; color: #34d399; margin-bottom: 16px; }
.ot-form-success h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.ot-form-success p  { color: rgba(255,255,255,.7); margin-bottom: 20px; }

/* ===========================
   FINAL CTA BAND
   =========================== */
.ot-final-cta {
  background: var(--ot-gradient);
  padding: 70px 0;
  text-align: center; position: relative; overflow: hidden;
}
.ot-final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(255,255,255,.03) 10px,rgba(255,255,255,.03) 20px);
}
.ot-final-cta h2 { font-size: clamp(1.7rem,2.8vw,2.5rem); font-weight: 900; color: #fff; margin-bottom: 14px; position: relative; }
.ot-final-cta p  { font-size: 1.05rem; color: rgba(255,255,255,.85); margin-bottom: 32px; position: relative; }
.ot-final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.ot-final-note { font-size: .8rem; color: rgba(255,255,255,.68); margin-top: 18px; position: relative; }

/* ===========================
   FOOTER
   =========================== */
.ot-page-footer { background: #050d18; padding: 60px 0 30px; color: rgba(255,255,255,.7); }
.ot-footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
}
.ot-footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ot-footer-logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--ot-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem;
}
.ot-footer-logo-main { font-size: 1.05rem; font-weight: 800; color: #fff; display: block; }
.ot-footer-logo-sub  { font-size: .7rem; color: rgba(255,255,255,.4); }
.ot-footer-brand p   { font-size: .82rem; line-height: 1.75; margin-bottom: 14px; }
.ot-footer-social { display: flex; gap: 8px; }
.ot-soc-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); font-size: .85rem;
  transition: var(--ot-transition);
}
.ot-soc-btn:hover { background: var(--ot-primary); color: #fff; }
.ot-footer-col h4 {
  font-size: .88rem; font-weight: 700; color: #fff;
  margin-bottom: 14px; letter-spacing: .05em; text-transform: uppercase;
}
.ot-footer-links { display: flex; flex-direction: column; gap: 8px; }
.ot-footer-links a { font-size: .8rem; color: rgba(255,255,255,.52); transition: var(--ot-transition); }
.ot-footer-links a:hover { color: #fda4af; }
.ot-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.ot-footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.38); }
.ot-footer-bottom-links { display: flex; gap: 16px; }
.ot-footer-bottom-links a { font-size: .75rem; color: rgba(255,255,255,.38); transition: var(--ot-transition); }
.ot-footer-bottom-links a:hover { color: #fda4af; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .ot-team-grid  { grid-template-columns: repeat(3,1fr); }
  .ot-dept-grid  { grid-template-columns: repeat(2,1fr); }
  .ot-jobs-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .ot-hero-inner         { grid-template-columns: 1fr; gap: 40px; }
  .ot-hero-visual        { order: -1; }
  .ot-team-grid          { grid-template-columns: repeat(2,1fr); }
  .ot-leadership-grid    { grid-template-columns: 1fr; }
  .ot-leader-card        { grid-template-columns: auto 1fr; }
  .ot-culture-grid       { grid-template-columns: 1fr; }
  .ot-testi-grid         { grid-template-columns: 1fr 1fr; }
  .ot-faq-grid           { grid-template-columns: 1fr; }
  .ot-cta-wrapper        { grid-template-columns: 1fr; }
  .ot-footer-grid        { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ot-section            { padding: 60px 0; }
  .ot-hero               { padding: 100px 0 60px; }
  .ot-stats-grid         { grid-template-columns: repeat(2,1fr); }
  .ot-team-grid          { grid-template-columns: 1fr 1fr; }
  .ot-dept-grid          { grid-template-columns: 1fr; }
  .ot-jobs-grid          { grid-template-columns: 1fr; }
  .ot-testi-grid         { grid-template-columns: 1fr; }
  .ot-perk-grid          { grid-template-columns: 1fr 1fr; }
  .ot-footer-grid        { grid-template-columns: 1fr; }
  .ot-form-row           { grid-template-columns: 1fr; }
  .ot-hero-actions       { flex-direction: column; }
  .ot-final-actions      { flex-direction: column; align-items: center; }
  .ot-leader-card        { grid-template-columns: 1fr; text-align: center; }
  .ot-leader-avatar      { margin: 0 auto; }
  .ot-leader-highlights  { justify-content: center; }
}
