:root {
  --teal: #0d6e78;
  --teal-dark: #094f58;
  --teal-light: #12a3b0;
  --gold: #f5b319;
  --gold-light: #fac842;
  --sky: #5bd4e0;
  --bg: #060d0e;
  --bg-2: #0a1416;
  --bg-card: #0d1c1f;
  --text: #e8f4f5;
  --text-muted: #7ab5bc;
  --border: rgba(13,110,120,0.25);
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: #060d0e;
  color: #e8f4f5;
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 76px;
  background: rgba(6,13,14,0.88);
  border-bottom: 1px solid rgba(13,110,120,0.25);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(9,79,88,0.35);
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: var(--teal-dark);
  box-shadow: 0 2px 32px rgba(9,79,88,0.45);
}
.nav-logo span {
  font-family:'Poppins',sans-serif; font-weight:700; font-size:1.1rem;
  color: #ffffff; letter-spacing:0.05em;
}
.nav-links a {
  font-size:0.83rem; color: rgba(255,255,255,0.72); text-decoration:none;
  letter-spacing:0.04em; font-weight:500; transition:color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.nav-logo img { height:48px; width:auto; object-fit:contain; border-radius:8px; }
.nav-links { display:flex; gap:36px; list-style:none; }
.nav-cta {
  background: var(--gold); color: #0a0a0a; border:none;
  padding: 9px 22px; border-radius: 6px; font-weight:700;
  font-size:0.82rem; cursor:pointer; letter-spacing:0.03em;
  transition: background 0.2s, transform 0.15s;
  text-decoration:none; font-family:'Poppins',sans-serif;
}
.nav-cta:hover { background:var(--gold-light); transform:translateY(-1px); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; }
.hamburger span { width:22px; height:2px; background:#ffffff; border-radius:2px; transition:0.3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(10px, 10px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu { display:none; position:absolute; top:76px; left:0; right:0; background:rgba(6,13,14,0.98); border-bottom:1px solid rgba(13,110,120,0.25); padding:20px 0; max-height:calc(100vh - 76px); overflow-y:auto; }
.mobile-menu.active { display:block; }
.mobile-links { display:flex; flex-direction:column; list-style:none; gap:0; }
.mobile-links li { border-bottom:1px solid rgba(13,110,120,0.1); }
.mobile-links a { display:block; padding:16px 5%; color:rgba(255,255,255,0.72); text-decoration:none; font-size:0.95rem; transition:color 0.2s, background 0.2s; }
.mobile-links a:hover { color:var(--gold); background:rgba(13,110,120,0.2); }
.mobile-cta { background:var(--gold) !important; color:#0a0a0a !important; font-weight:700; margin:12px 5%; border-radius:6px; }
.mobile-cta:hover { background:var(--gold-light) !important; }

/* ── HERO ── */
#hero {
  position: relative; width:100%; height:100vh; min-height:620px;
  display:flex; align-items:flex-start; overflow:hidden; padding-top:200px;
  background: linear-gradient(135deg, #0a1416 0%, #0d1c1f 100%);
}
.hero-video {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  opacity: 0.18; z-index:0;
}
@media(max-width: 768px) {
  .hero-video {
    opacity: 0.12;
  }
}

/* subtle teal geometric accent */
.hero-geo {
  position:absolute; right: -100px; top:50%; transform:translateY(-50%);
  width:520px; height:520px; z-index:1;
  border-radius:60% 40% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(13,110,120,0.08) 0%, rgba(245,179,25,0.06) 60%, transparent 100%);
  border: 1px solid rgba(13,110,120,0.1);
  animation: morphBlob 12s ease-in-out infinite;
}
@media(max-width: 1200px) {
  .hero-geo { display: none; }
}
@keyframes morphBlob {
  0%,100%{ border-radius:60% 40% 70% 30%/50% 60% 40% 50%; }
  33%{ border-radius:40% 60% 30% 70%/60% 40% 60% 40%; }
  66%{ border-radius:70% 30% 50% 50%/30% 70% 30% 70%; }
}
.hero-content {
  position: relative; z-index: 3;
  max-width: 600px;
  padding: 0 6%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,110,120,0.18); border: 1px solid rgba(13,110,120,0.25);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
  font-size: 0.72rem; color: #5bd4e0; letter-spacing: 0.07em; font-weight: 700;
}
.hero-badge::before {
  content:''; width:6px; height:6px; border-radius:50%;
  background:var(--gold); animation: pulse 2s infinite;
}
.hero-tagline {
  font-size: 0.85rem; color: #7ab5bc; margin-bottom: 20px;
  font-weight: 300; letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  line-height: 1.05; color: #ffffff; margin-bottom: 20px;
}
.hero-title em { font-style: normal; color: #f5b319; }
.hero-sub {
  font-size: 0.95rem; color: #7ab5bc;
  max-width: 480px; line-height: 1.75; margin-bottom: 36px; font-weight: 300;
}
.hero-btns {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.btn-primary {
  background: var(--gold); color: #0a0a0a; padding: 14px 28px;
  border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: 0.2s; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,179,25,0.32); }
.btn-gold {
  background:var(--gold); color:#0a0a0a; padding:14px 28px;
  border-radius:8px; font-weight:700; font-size:0.9rem;
  text-decoration:none; transition:0.2s; display:inline-flex; align-items:center; gap:8px;
  letter-spacing:0.02em;
}
.btn-gold:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow: 0 8px 30px rgba(245,179,25,0.32); }
.btn-ghost {
  background:transparent; color:var(--teal); padding:14px 28px;
  border-radius:8px; font-weight:600; font-size:0.9rem;
  text-decoration:none; border:1.5px solid var(--teal);
  transition:0.2s; display:inline-flex; align-items:center; gap:8px;
}
.btn-ghost:hover { background:rgba(13,110,120,0.06); transform:translateY(-2px); }
.btn-whatsapp {
  background:var(--teal-dark); color:#fff; padding:14px 28px;
  border-radius:8px; font-weight:700; font-size:0.9rem;
  text-decoration:none; transition:0.2s; display:inline-flex; align-items:center; gap:8px;
  letter-spacing:0.02em;
}
.btn-whatsapp:hover { background:var(--teal); transform:translateY(-2px); box-shadow: 0 8px 30px rgba(13,110,120,0.28); }
.btn-secondary {
  background: transparent; color: #ffffff; padding: 14px 28px;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,0.4);
  transition: 0.2s; display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: 0.02em;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.hero-description {
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--teal-dark);
  max-width:520px; line-height:1.75; margin-bottom:40px;
  font-weight:300; animation: fadeUp 1s 0.35s ease both;
}
.hero-scroll {
  position:absolute; bottom:36px; left:6%; z-index:3;
  display:flex; align-items:center; gap:10px;
  font-size:0.72rem; color:var(--text-muted); letter-spacing:0.1em;
}
.scroll-line { width:40px; height:1px; background:var(--teal); opacity:0.35; }

/* ── HERO SLIDE TEXT ── */
.hero-slide-outer { margin-bottom: 22px; }
.hero-slide-wrap {
  overflow: hidden;
  height: clamp(8rem, 15vw, 12rem);
  transition: height 0.6s ease;
}
.hero-slide-wrap.expanded { height: clamp(10rem, 14vw, 12rem); }
.hero-slide-track {
  display: flex;
  flex-direction: column;
}
.hero-slide-line {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.2;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(245,179,25,0.22);
  padding: 8px 0;
  flex-shrink: 0;
}
.hero-slide-line.line-2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.75;
  color: var(--gold);
  text-shadow: none;
  max-width: 540px;
  margin-top: 10px;
}
@keyframes slideTexts {
  0%   { transform: translateY(0); }
  38%  { transform: translateY(0); }
  46%  { transform: translateY(-100%); }
  84%  { transform: translateY(-100%); }
  92%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* ── SECTION COMMONS ── */
section { padding: 60px 6%; width: 100%; overflow: hidden; }
.section-label {
  display:inline-block; font-size:0.72rem; letter-spacing:0.14em;
  text-transform:uppercase; color:#f5b319; font-weight:700;
  margin-bottom:14px;
}
.section-title {
  font-family:'Poppins',sans-serif; font-weight:700;
  font-size: clamp(1.9rem, 4vw, 2.9rem); line-height:1.08;
  color:#ffffff; margin-bottom:16px;
}
.section-sub {
  font-size:1rem; color:#7ab5bc; max-width:520px;
  line-height:1.78; font-weight:300;
}

/* ── STATS RIBBON ── */
#stats {
  padding: 0;
  background: var(--teal-dark);
  margin-top: 6px;
  border-top: 4px solid var(--gold);
  box-shadow: 0 -4px 0 var(--gold), 0 -12px 40px rgba(9,79,88,0.18);
}
.stats-inner {
  display:grid; grid-template-columns:repeat(4,1fr);
  max-width:1200px; margin:0 auto;
}
.stat-item {
  padding:42px 40px;
  border-right:1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background: rgba(255,255,255,0.05); }
.stat-num {
  font-family:'Poppins',sans-serif; font-weight:700;
  font-size:2.6rem; color:var(--gold); line-height:1;
}
.stat-desc { font-size:0.82rem; color:rgba(255,255,255,0.6); margin-top:6px; letter-spacing:0.02em; }

/* ── SERVICES — 3D FLIP CARDS ── */
#services {
  background: #0a1416;
  padding-bottom: 40px;
}
.services-header {
  max-width:640px; margin-bottom:64px;
}

/* Horizontal scroll track */
.services-track-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
.services-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 12px;
  cursor: grab;
  /* extra bottom padding so box-shadow of flipped card isn't clipped */
  padding-top: 4px;
  width: 100%;
  max-width: 100%;
}
.services-track:active { cursor: grabbing; }
.services-track::-webkit-scrollbar { display:none; }

/* The outer wrapper — sets the 3D perspective */
.service-flip-wrap {
  flex: 0 0 320px;
  scroll-snap-align: start;
  height: 500px;
  perspective: 1000px;
  cursor: pointer;
}

/* The card itself — rotates on hover/touch */
.service-card {
  width: 100%; height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
  border-radius: 18px;
}
/* Hover flips on desktop */
.service-flip-wrap:hover .service-card {
  transform: rotateY(180deg);
}
/* JS-toggled flip for touch devices */
.service-flip-wrap.flipped .service-card {
  transform: rotateY(180deg);
}

/* Both faces share these base styles */
.card-front,
.card-back {
  position: absolute; inset: 0;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex; flex-direction: column;
  overflow: hidden;
}

/* ── FRONT FACE ── */
.card-front {
  background: #0d1c1f;
  border: 1px solid rgba(13,110,120,0.25);
  box-shadow: 0 4px 24px rgba(13,110,120,0.07);
}
.card-front-visual {
  flex: 0 0 220px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-front-visual::after {
  content:'';
  position: absolute; inset: 0; opacity: 0.07;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0px, transparent 1px, transparent 32px, rgba(255,255,255,0.5) 33px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.5) 0px, transparent 1px, transparent 32px, rgba(255,255,255,0.5) 33px);
}
.sv-1 { background: linear-gradient(145deg, #0d6e78 0%, #094f58 100%); }
.sv-2 { background: linear-gradient(145deg, #e8960d 0%, #f5b319 100%); }
.sv-3 { background: linear-gradient(145deg, #12a3b0 0%, #0d6e78 100%); }
.sv-4 { background: linear-gradient(145deg, #094f58 0%, #0d9aaa 100%); }

.card-front-icon {
  font-size: 3.2rem; position: relative; z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
/* small "flip hint" badge */
.flip-hint {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.08em; font-weight: 700;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
  display: flex; align-items: center; gap: 4px;
}
.flip-hint svg { opacity: 0.6; }

.card-front-body {
  padding: 24px 28px 28px; flex: 1;
}
.card-front-body h3 {
  font-family:'Poppins',sans-serif; font-weight:600; font-size:1.08rem;
  color:#ffffff; margin-bottom:8px;
}
.card-front-body p {
  font-size:0.84rem; color:#7ab5bc; line-height:1.65;
}

/* ── BACK FACE ── */
.card-back {
  transform: rotateY(180deg);
  justify-content: flex-start;
  padding: 28px 26px;
  box-shadow: 0 16px 48px rgba(13,110,120,0.18);
}
.cb-1 { background: linear-gradient(145deg, #0d6e78, #094f58); }
.cb-2 { background: linear-gradient(145deg, #d48600, #f5b319); }
.cb-3 { background: linear-gradient(145deg, #0d6e78, #12a3b0); }
.cb-4 { background: linear-gradient(145deg, #094f58, #0d9aaa); }

.card-back-icon {
  font-size: 1.8rem; margin-bottom: 10px; opacity: 0.9;
}
.card-back h4 {
  font-family:'Poppins',sans-serif; font-weight:700; font-size:1rem;
  margin-bottom: 10px;
}
.cb-2 h4 { color: #0a0a0a; }
.cb-1 h4, .cb-3 h4, .cb-4 h4 { color: #fff; }

.card-back p {
  font-size: 0.82rem; line-height: 1.65; margin-bottom: 18px;
}
.cb-2 p { color: rgba(9,79,88,0.85); }
.cb-1 p, .cb-3 p, .cb-4 p { color: rgba(255,255,255,0.82); }

.back-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px;
  font-family:'Poppins',sans-serif; font-weight:600;
  font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none; transition: 0.2s; align-self: flex-start;
}
.cb-1 .back-cta, .cb-3 .back-cta, .cb-4 .back-cta {
  background: var(--gold); color: #0a0a0a;
}
.cb-2 .back-cta {
  background: var(--teal-dark); color: #fff;
}
.back-cta:hover { opacity: 0.88; transform: translateX(3px); }

/* Scroll nav dots */
.scroll-nav {
  display: flex; gap: 8px;
}
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; border: 1.5px solid var(--teal);
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.scroll-dot.active { background: var(--teal); transform: scale(1.3); }

/* Scroll arrows */
.scroll-arrows {
  display: flex; gap: 10px;
}
.scroll-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s; color: var(--teal);
  font-size: 1.1rem;
}
.scroll-arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── ABOUT — SLIDING CARDS ── */
#about {
  background: #0a1416;
  padding: 40px 6% 80px;
}
.about-wrapper {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
  margin-bottom: 80px;
}
.about-header { max-width:480px; margin-bottom:0; }
.about-header .section-label { margin-bottom:12px; }
.about-header .section-title { 
  margin-bottom:24px; 
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); 
  line-height: 1.2; 
  font-weight: 800;
}
.about-header .section-sub { 
  margin-bottom:16px; 
  line-height:1.8; 
  font-size: 0.98rem;
  color: #7ab5bc;
}
.about-header .section-sub:last-of-type { margin-bottom:0; }
.about-image-column { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  align-items: stretch;
}
.about-image-right {
  width: 100%; 
  aspect-ratio: 1.6 / 1;
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,110,120,0.18);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  background: #0a1416;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-right:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(13,110,120,0.24);
}
.about-image-right img {
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  border-radius: 12px;
  display: block;
}
.about-track-wrap { position: relative; overflow: hidden; display: none; }
.about-track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding-bottom: 8px; cursor: grab;
}
.about-track:active { cursor: grabbing; }
.about-track::-webkit-scrollbar { display: none; }

.about-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.35s, box-shadow 0.35s;
}
.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(13,110,120,0.13);
}
.about-card-visual {
  width: 100%; height: 240px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-card-bg {
  position: absolute; inset: 0;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.about-card:hover .about-card-bg { transform: translateY(-100%); }

.about-card-reveal {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 32px;
  color: #0a0a0a;
}
.about-card:hover .about-card-reveal { transform: translateY(0); }
.about-card-reveal h4 {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 1rem; margin-bottom: 10px; color: var(--teal-dark);
}
.about-card-reveal p {
  font-size: 0.88rem; line-height: 1.65; color: rgba(9,79,88,0.85);
}
.about-card-reveal .about-link {
  margin-top: 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--teal-dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}

.about-card-icon {
  font-size: 2.8rem; z-index: 1; position: relative;
}
.ab-1 { background: linear-gradient(135deg, #eef4f5 0%, #d6eaec 100%); }
.ab-2 { background: linear-gradient(135deg, #fff8e1 0%, #fde9a2 100%); }
.ab-3 { background: linear-gradient(135deg, #e8f4f5 0%, #b8dfe4 100%); }

.about-card-body {
  padding: 24px 28px 28px;
}
.about-card-body h3 {
  font-family:'Poppins',sans-serif; font-weight:600; font-size:1.05rem;
  color: var(--teal-dark); margin-bottom: 8px;
}
.about-card-body p {
  font-size: 0.84rem; color: var(--text-muted); line-height: 1.65;
}

/* Team strip below about cards */
.team-strip {
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; 
  margin-top: 0;
  width: 100%;
}
.team-card {
  background: rgba(13,110,120,0.12); 
  border: 1px solid rgba(13,110,120,0.28);
  border-radius: 10px; 
  padding: 20px 16px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 12px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(6px);
}
.team-card:nth-child(2) {
  grid-column: auto;
}
.team-card:hover { 
  border-color: rgba(18,163,176,0.5); 
  background: rgba(13,110,120,0.2); 
  transform: translateY(-4px); 
  box-shadow: 0 8px 32px rgba(13,110,120,0.15); 
}
.team-avatar {
  width: 48px; 
  height: 48px; 
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; 
  align-items: center; 
  justify-content: center;
  font-family:'Poppins',sans-serif; 
  font-weight:700;
  font-size: 0.85rem; 
  color: #fff; 
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(13,110,120,0.25);
}
.team-card h4 { 
  font-family:'Poppins',sans-serif; 
  font-weight:600; 
  font-size:0.88rem; 
  color:#ffffff; 
  text-align: center;
  margin: 0;
}
.team-card p { 
  font-size:0.77rem; 
  color:#5bd4e0; 
  margin: 0; 
  text-align: center; 
  font-weight: 400;
  line-height: 1.3;
}

/* ── TEAM VIDEO ── */
.team-video-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 56px;
  padding: 48px 6%;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  background: var(--teal-dark);
  border: none;
}
.team-video-wrap .section-label { color: var(--gold); }
.team-video-wrap .team-video-label p { color: rgba(255,255,255,0.6); }
.team-video-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(13,110,120,0.14);
  background: var(--teal-dark);
}
.tvp-poster {
  position: absolute; inset: 0;
  transition: opacity 0.4s;
}
.tvp-poster img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.tvp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(9,79,88,0.55) 0%, rgba(13,110,120,0.3) 100%);
}
.tvp-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  box-shadow: 0 8px 32px rgba(245,179,25,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-video-player:hover .tvp-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(245,179,25,0.65);
}
.tvp-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(9,79,88,0.85); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
}
.tvp-poster.hidden { opacity: 0; pointer-events: none; }

@media(max-width:900px){
  .team-video-wrap { grid-template-columns: 1fr; gap: 24px; width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
}

/* ── TRUST LOGOS ── */
#trust {
  text-align:center; padding:60px 6%;
  background: #0a1416;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-label { font-size:0.73rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:36px; font-weight:600; }
.logos-row {
  display:flex; justify-content:center; align-items:center;
  flex-wrap:wrap; gap:52px;
}
.logo-placeholder {
  font-family:'Poppins',sans-serif; font-weight:700; font-size:0.95rem;
  color:rgba(13,110,120,0.25); letter-spacing:0.1em;
  transition:color 0.3s;
}
.logo-placeholder:hover { color:rgba(13,110,120,0.6); }

/* ── PROCESS ── */
#process { background: #0a1416; padding-top: 20px; }
#process .section-label { color: var(--gold); }
#process .section-title { color: #fff; }
#process .section-sub { color: rgba(255,255,255,0.6); max-width:none; }
.process-header { text-align:center; max-width:600px; margin:0 auto 64px; }
.process-steps {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:0; position:relative;
}
.process-steps::before {
  content:''; position:absolute; top:28px; left:12.5%; right:12.5%; height:1px;
  background:linear-gradient(90deg, transparent, rgba(245,179,25,0.3), rgba(245,179,25,0.3), transparent);
  z-index:0;
}
.process-step { position:relative; z-index:1; padding:0 24px; text-align:center; }
.step-num {
  width:56px; height:56px; border-radius:50%;
  background: rgba(255,255,255,0.06); border:1px solid rgba(245,179,25,0.3);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; font-family:'Poppins',sans-serif; font-weight:700;
  font-size:0.9rem; color:var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.process-step:hover .step-num { background:rgba(245,179,25,0.15); border-color:var(--gold); }
.process-step h4 { font-family:'Poppins',sans-serif; font-weight:600; font-size:0.95rem; color:#fff; margin-bottom:10px; }
.process-step p { font-size:0.83rem; color:rgba(255,255,255,0.55); line-height:1.7; }

/* ── TESTIMONIALS ── */
#testimonials { background: #0a1416; }
#testimonials .test-quote { color: #e8f4f5; }
#testimonials .test-role { color: #7ab5bc; }
#testimonials .test-name { color: #ffffff; }
.test-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; margin-top:56px; }
.test-card {
  background:#0d1c1f; border:1px solid rgba(13,110,120,0.25);
  border-radius:16px; padding:36px; position:relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.test-card:hover { border-color:var(--teal-light); transform:translateY(-5px); box-shadow:0 16px 48px rgba(13,110,120,0.1); }
.test-card::before {
  content:'"'; position:absolute; top:20px; right:28px;
  font-family:'Poppins',sans-serif; font-size:4rem; color:var(--gold);
  opacity:0.25; line-height:1;
}
.test-quote {
  font-size:0.93rem; color:var(--text); line-height:1.78;
  margin-bottom:24px; font-style:italic; font-weight:300;
}
.test-author { display:flex; align-items:center; gap:12px; }
.test-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,var(--teal),var(--gold));
  display:flex; align-items:center; justify-content:center;
  font-family:'Poppins',sans-serif; font-weight:600; font-size:0.85rem; color:#fff;
}
.test-name { font-family:'Poppins',sans-serif; font-weight:600; font-size:0.88rem; color:var(--teal-dark); }
.test-role { font-size:0.78rem; color:var(--text-muted); }
.stars { color:var(--gold); font-size:0.85rem; margin-bottom:16px; letter-spacing:2px; }

/* ── CTA SECTION ── */
#cta {
  text-align:center; padding:120px 6%;
  background: var(--teal-dark);
  position:relative; overflow:hidden;
}
.cta-ring {
  position:absolute; width:700px; height:700px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.05);
  top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.cta-ring-2 {
  position:absolute; width:500px; height:500px; border-radius:50%;
  border: 1px solid rgba(245,179,25,0.1);
  top:50%; left:50%; transform:translate(-50%,-50%);
  pointer-events:none;
}
.cta-title {
  font-family:'Poppins',sans-serif; font-weight:700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color:#fff; margin-bottom:16px; position:relative;
}
.cta-title em { font-style:normal; color:var(--gold); }
.cta-sub { color:rgba(255,255,255,0.6); font-size:1rem; max-width:480px; margin:0 auto 40px; line-height:1.78; position:relative; }
.cta-btns { display:flex; justify-content:center; gap:14px; flex-wrap:wrap; position:relative; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(0.8);} }
@keyframes bounceIn { from{opacity:0;transform:scale(0.3);} 70%{transform:scale(1.1);} to{opacity:1;transform:scale(1);} }
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .process-steps { grid-template-columns:repeat(2,1fr); gap:32px; }
  .process-steps::before { display:none; }
  .stats-inner { grid-template-columns:repeat(4,1fr); }
  .stat-item { padding:28px 12px; }
  .team-strip { grid-template-columns:repeat(3,1fr); }
  .about-wrapper { grid-template-columns:1fr; gap:40px; margin-bottom:40px; }
  
  #hero { padding-top: 120px; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
  .hero-btns { flex-wrap: wrap; }
}
@media(max-width:768px){
  section { padding: 40px 5%; }
  #services .cards-grid { grid-template-columns: 1fr; }
}
@media(max-width:640px){
  nav { padding:0 5%; height: 64px; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .nav-logo img { height: 40px; width: auto; }
  
  section { padding:40px 5%; }
  
  #hero {
    height: 85vh;
    min-height: 500px;
    padding-top: 80px;
    align-items: center;
    justify-content: center;
  }
  .hero-content { 
    max-width: 100%;
    padding: 0 5%;
    text-align: center;
  }
  .hero-tagline { margin-bottom: 16px; }
  .hero-title { 
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 16px;
  }
  .hero-sub { 
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 0.9rem;
  }
  .hero-badge { 
    margin-bottom: 16px;
    font-size: 0.65rem; 
    padding: 5px 12px; 
    display: inline-flex;
  }
  .hero-btns { 
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-btns a { 
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .hero-geo { display:none; }
  
  .stats-inner { grid-template-columns:repeat(4,1fr); }
  .stat-item { padding:18px 10px; }
  .stat-num { font-size:1.6rem; }
  .stat-desc { font-size:0.7rem; }
  
  #services { padding: 40px 5%; }
  .cards-grid { grid-template-columns: 1fr; gap: 24px; }
  
  .process-steps { grid-template-columns:1fr; gap: 24px; }
  
  .team-strip { grid-template-columns:repeat(3,1fr); }
  .about-wrapper { gap:24px; margin-bottom:32px; }
  .about-image-right { 
    min-height: 220px;
    aspect-ratio: 1.5 / 1;
  }
  .about-header .section-title { font-size: 1.5rem; }
  .about-header .section-sub { font-size: 0.9rem; }
  
  .stats-inner { grid-template-columns:repeat(4,1fr); }
  .stat-item { padding: 16px 8px; }
  .stat-num { font-size: 1.4rem; }
  .stat-desc { font-size: 0.65rem; }
  
  #cta { padding: 60px 5%; }
  .cta-title { margin-bottom: 12px; }
  .cta-sub { margin: 0 auto 30px; }
  .cta-btns { gap: 10px; }
  .cta-btns a { padding: 12px 20px; font-size: 0.85rem; }
  
}
