/* ============================================ */
/*  OBS360 v2 — Premium Dark Design System      */
/* ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy-900: #1a2d42;
  --navy-800: #1f3550;
  --navy-700: #263d5c;
  --navy-600: #2f4d6e;
  --accent-lime: #84cc16;
  --accent-lime-dark: #65a30d;
  --accent-gold: #f59e0b;
  --glass-bg: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-light: rgba(0,0,0,0.08);
  --text-white: #ffffff;
  --text-muted: rgba(255,255,255,0.55);
  --text-dim: rgba(255,255,255,0.35);
  --text-dark: #1a1a2e;
  --text-dark-muted: #4b5563;
  --card-bg: rgba(255,255,255,0.03);
  --section-dark: #1a2d42;
  --section-alt: #162738;
  --section-gray: #f3f4f6;
  --section-gray-card: rgba(0,0,0,0.03);
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  --shadow-glow: 0 0 60px rgba(132,204,22,0.08);
  --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', -apple-system, sans-serif;
  background: var(--navy-900);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ====== HEADER ====== */
.v2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.v2-header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.v2-header-inner {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
}
.v2-logo-group { display: flex; align-items: center; gap: 16px; }
.v2-logo-group img { height: 52px; width: auto; }
.v2-spn-badge img { height: 44px; width: auto; opacity: 0.85; }
.v2-nav { display: flex; align-items: center; gap: 32px; }
.v2-nav-link {
  color: #374151; font-size: 13px; font-weight: 600;
  text-decoration: none; text-transform: uppercase; letter-spacing: 1px;
  position: relative; transition: var(--transition);
}
.v2-nav-link:hover { color: var(--navy-600); }
.v2-nav-link::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 2px; background: var(--accent-lime);
  border-radius: 2px; transition: width 0.3s ease;
}
.v2-nav-link:hover::after { width: 100%; }
.v2-nav-blog {
  background: rgba(40,82,154,0.08); color: var(--navy-600) !important;
  padding: 8px 20px; border-radius: var(--radius-full);
  border: 1px solid rgba(40,82,154,0.15);
}
.v2-lang-group { display: flex; gap: 6px; margin-left: 8px; }
.v2-lang-btn {
  padding: 7px 14px; border-radius: var(--radius-full); border: 1px solid #e5e7eb;
  background: transparent; color: #6b7280; font-size: 11px;
  font-weight: 700; cursor: pointer; transition: var(--transition);
}
.v2-lang-btn.active {
  background: var(--accent-lime); color: var(--navy-900);
  border-color: var(--accent-lime);
  box-shadow: 0 4px 16px rgba(132,204,22,0.25);
}
.v2-hamburger {
  display: none; background: none; border: 1px solid #e5e7eb;
  color: #1f2937; font-size: 22px; cursor: pointer;
  padding: 8px 12px; border-radius: 12px;
}
.v2-mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(24px);
  padding: 24px; flex-direction: column; gap: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.v2-mobile-nav .v2-nav-link { color: #374151; }
.v2-mobile-nav.active { display: flex; }

@media(max-width:900px) {
  .v2-nav { display: none; }
  .v2-hamburger { display: block; }
  .v2-spn-badge { display: none; }
}

/* ====== HERO ====== */
.v2-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #ffffff;
  padding-top: 80px;
}
.v2-hero-bg { display: none; }
.v2-hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(132,204,22,0.06) 0%, transparent 70%);
  animation: heroFloat 8s ease-in-out infinite alternate;
}
@keyframes heroFloat {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px, 30px) scale(1.1); }
}
.v2-hero-grid {
  display: grid; grid-template-columns: 0.4fr 0.6fr;
  gap: 48px; align-items: center; position: relative; z-index: 2;
}
.v2-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.25);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; color: var(--accent-lime-dark);
  margin-bottom: 24px; letter-spacing: 1.5px; text-transform: uppercase;
}
.v2-hero-badge .dot { width: 6px; height: 6px; background: var(--accent-lime); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }
.v2-hero h1 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 28px; text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-600) 40%, var(--accent-lime-dark) 80%, var(--accent-lime) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-amazon-text {
  font-size: 125%;
  letter-spacing: -0.03em;
}
.v2-hero .desc {
  font-size: 1.05rem; color: #6b7280; max-width: none;
  line-height: 1.75; margin-top: 20px; font-weight: 400;
  padding: 0 4px;
}
.v2-hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-dark));
  color: var(--navy-900); padding: 16px 36px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(132,204,22,0.25);
  transition: var(--transition);
}
.v2-hero-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 48px rgba(132,204,22,0.35); }
.v2-hero-img { position: relative; }
.v2-hero-img video, .v2-hero-img img { width: 100%; border-radius: var(--radius-2xl); }
.v2-hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--glass-border-light);
}
.v2-stat-num { font-family:'Outfit',sans-serif; font-size:2rem; font-weight:800; color:var(--navy-900); }
.v2-stat-label { font-size:0.8rem; color:#9ca3af; margin-top:4px; text-transform:uppercase; letter-spacing:0.5px; font-weight:600; }

@media(max-width:900px) {
  .v2-hero-grid { grid-template-columns:1fr; text-align:center; }
  .v2-hero .desc { margin:0 auto 36px; }
  .v2-hero-stats { justify-content:center; }
}

/* ====== LOGO CAROUSEL ====== */
.v2-carousel {
  background: #ffffff; padding: 48px 0;
  overflow: hidden; position: relative;
}
.v2-carousel-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  overflow: hidden; position: relative;
}
.v2-carousel-inner::before, .v2-carousel-inner::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.v2-carousel-inner::before { left: 0; background: linear-gradient(90deg, #ffffff, transparent); }
.v2-carousel-inner::after { right: 0; background: linear-gradient(270deg, #ffffff, transparent); }
.v2-carousel-track {
  display: flex; width: max-content;
  will-change: transform; transition: none;
}
.v2-logo-item {
  flex-shrink: 0; margin: 0 28px; width: 200px; height: 110px;
  background: transparent; border: none;
  border-radius: 0; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 8px; transition: var(--transition);
}
.v2-logo-item:hover {
  transform: scale(1.1);
}
.v2-logo-item img { max-height: 110px; max-width: 200px; object-fit: contain; transition: var(--transition); }
.v2-logo-item:hover img { filter: contrast(1.15); }

/* ====== SECTION TITLES ====== */
.v2-section { padding: 100px 0; position: relative; }
.v2-section-dark { background: var(--navy-900); color: var(--text-white); }
.v2-section-gray { background: var(--section-gray); color: var(--text-dark); }
.v2-section-alt { background: var(--section-alt); }

/* ====== GRAY SECTION OVERRIDES ====== */
.v2-section-gray .v2-section-title { color: var(--navy-900); }
.v2-section-gray .v2-section-desc { color: var(--text-dark-muted); }
.v2-section-gray .v2-section-label { color: var(--navy-600); }
.v2-section-gray .v2-section-label .line { background: var(--navy-600); }
.v2-section-gray .v2-service-row {
  background: #ffffff; border-color: rgba(0,0,0,0.08);
}
.v2-section-gray .v2-service-row:hover { border-color: rgba(30,58,110,0.2); }
.v2-section-gray .v2-service-row h3 { color: var(--navy-900); }
.v2-section-gray .v2-service-row p { color: var(--text-dark-muted); }
.v2-section-gray .v2-service-emoji { background: rgba(30,58,110,0.08); }
.v2-section-gray .v2-exp-img img { box-shadow: 0 24px 64px rgba(0,0,0,0.1); }

/* ====== DARK SECTION TEXT OVERRIDES ====== */
.v2-section-dark .v2-test-card { background: rgba(255,255,255,0.04); border-color: var(--glass-border); }
.v2-section-dark .v2-test-card:hover { border-color: rgba(132,204,22,0.3); }

/* ====== ORBIT SVG ANIMATION ====== */
.v2-orbit-wrapper { display: flex; align-items: center; justify-content: center; }
.v2-orbit-svg { width: 100%; max-width: 480px; height: auto; border-radius: var(--radius-2xl); }

@keyframes orbit1 { from{transform:rotate(0deg) translateX(185px) rotate(0deg)} to{transform:rotate(360deg) translateX(185px) rotate(-360deg)} }
@keyframes orbit2 { from{transform:rotate(72deg) translateX(185px) rotate(-72deg)} to{transform:rotate(432deg) translateX(185px) rotate(-432deg)} }
@keyframes orbit3 { from{transform:rotate(144deg) translateX(185px) rotate(-144deg)} to{transform:rotate(504deg) translateX(185px) rotate(-504deg)} }
@keyframes orbit4 { from{transform:rotate(216deg) translateX(185px) rotate(-216deg)} to{transform:rotate(576deg) translateX(185px) rotate(-576deg)} }
@keyframes orbit5 { from{transform:rotate(288deg) translateX(185px) rotate(-288deg)} to{transform:rotate(648deg) translateX(185px) rotate(-648deg)} }
@keyframes pulse1 { 0%,100%{opacity:.12;r:70} 50%{opacity:.22;r:78} }
@keyframes pulse2 { 0%,100%{opacity:.06;r:90} 50%{opacity:.14;r:98} }
@keyframes centerGlow { 0%,100%{opacity:.3} 50%{opacity:.55} }

@media (prefers-reduced-motion: no-preference) {
  .n1{animation:orbit1 22s linear infinite}
  .n2{animation:orbit2 22s linear infinite}
  .n3{animation:orbit3 22s linear infinite}
  .n4{animation:orbit4 22s linear infinite}
  .n5{animation:orbit5 22s linear infinite}
  .pr1{animation:pulse1 3.5s ease-in-out infinite}
  .pr2{animation:pulse2 3.5s ease-in-out infinite .4s}
  .cg{animation:centerGlow 3s ease-in-out infinite}
}

.node-group { cursor: pointer; transform-origin: 250px 250px; }
.node-group:hover circle.bg { opacity: 1; }

/* ====== GRAY SECTION SVC CARD OVERRIDES ====== */
.v2-section-gray .v2-cards-intro {
  background: #ffffff; border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.v2-section-gray .v2-cards-intro .v2-section-title { color: var(--navy-900); }
.v2-section-gray .v2-cards-intro .v2-section-desc { color: var(--text-dark-muted); }
.v2-section-gray .v2-svc-card {
  background: #ffffff; border-color: rgba(0,0,0,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.v2-section-gray .v2-svc-card:hover {
  background: #ffffff; border-color: rgba(30,58,110,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.v2-section-gray .v2-svc-card h3 { color: var(--navy-900); }
.v2-section-gray .v2-svc-card p { color: var(--text-dark-muted); }
.v2-section-gray .v2-svc-icon { background: rgba(30,58,110,0.08); }
.v2-section-gray .v2-svc-btn {
  background: rgba(30,58,110,0.08); color: var(--navy-600);
  border-color: rgba(30,58,110,0.15);
}
.v2-section-gray .v2-svc-btn:hover {
  background: var(--navy-600); color: #fff;
  box-shadow: 0 4px 16px rgba(30,58,110,0.2);
}
.v2-section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-lime); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.v2-section-label .line { width: 32px; height: 2px; background: var(--accent-lime); border-radius: 2px; }
.v2-section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.v2-section-desc { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }
.v2-section-center { text-align: center; }
.v2-section-center .v2-section-desc { margin: 0 auto; }

/* ====== EXPERIENCE ====== */
.v2-exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 48px; }
.v2-exp-img img { width: 100%; border-radius: var(--radius-2xl); box-shadow: 0 24px 64px rgba(0,0,0,0.3); }
@media(max-width:900px) { .v2-exp-grid { grid-template-columns:1fr; } }

/* ====== SERVICES LIST ====== */
.v2-services-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.v2-service-row {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, rgba(132,204,22,0.06) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(132,204,22,0.15);
  border-radius: 16px; padding: 20px; transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; position: relative; overflow: hidden;
}
.v2-service-row::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(132,204,22,0.12), transparent);
  opacity: 0; transition: opacity 0.7s ease;
}
.v2-service-row:hover::before, .v2-service-row.scroll-active::before { opacity: 1; }
.v2-service-row:hover, .v2-service-row.scroll-active {
  border-color: rgba(132,204,22,0.5); transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 32px rgba(132,204,22,0.15);
}
.v2-service-emoji {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(132,204,22,0.15); display: flex; align-items: center;
  justify-content: center; font-size: 22px; flex-shrink: 0;
  transition: all 0.7s cubic-bezier(0.4,0,0.2,1);
}
.v2-service-row:hover .v2-service-emoji, .v2-service-row.scroll-active .v2-service-emoji {
  background: rgba(132,204,22,0.3); transform: scale(1.15) rotate(8deg);
  box-shadow: 0 4px 16px rgba(132,204,22,0.25);
}
.v2-service-emoji svg { transition: transform 0.7s ease; }
.v2-service-row:hover .v2-service-emoji svg, .v2-service-row.scroll-active .v2-service-emoji svg { transform: scale(1.1); }
.v2-service-row h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.v2-service-row p { font-size: 0.9rem; color: var(--text-muted); position: relative; z-index: 1; }

/* Orbit SVG sizing */
.v2-orbit-wrapper { display: flex; align-items: center; justify-content: center; }
.v2-orbit-svg { width: 100%; max-width: 560px; height: auto; border-radius: var(--radius-2xl); }

/* ====== WHY CHOOSE OBS360 — MODERN REDESIGN ====== */
.v2-why-section {
  padding: 120px 0 100px;
  position: relative;
  overflow: visible;
  background: #ffffff;
  color: var(--text-dark);
}
.v2-why-bg-glow {
  position: absolute; top: -180px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(132,204,22,0.06) 0%, transparent 70%);
  animation: whyGlow1 10s ease-in-out infinite alternate;
  pointer-events: none;
}
.v2-why-bg-glow2 {
  position: absolute; bottom: -150px; right: -100px;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(132,204,22,0.04) 0%, transparent 70%);
  animation: whyGlow2 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes whyGlow1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(60px, 40px) scale(1.2); opacity: 1; }
}
@keyframes whyGlow2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(-50px, -30px) scale(1.15); opacity: 0.9; }
}

.v2-why-header {
  text-align: center;
  margin-bottom: 64px;
}
.v2-why-header .v2-section-label {
  color: var(--accent-lime-dark);
  margin-bottom: 12px;
}
.v2-why-header .v2-section-label .line {
  background: var(--accent-lime-dark);
}
.v2-why-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--accent-lime-dark) 80%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.v2-why-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats Row */
.v2-why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.v2-why-stat-card {
  background: linear-gradient(160deg, #1a2d42 0%, #243b55 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 20px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.v2-why-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(132,204,22,0.1), rgba(132,204,22,0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.v2-why-stat-card:hover {
  border-color: rgba(132,204,22,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,45,66,0.35);
}
.v2-why-stat-card:hover::before { opacity: 1; }

.v2-why-stat-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(132,204,22,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--accent-lime);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  animation: iconSpin 8s linear infinite;
}
@keyframes iconSpin {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(8deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-8deg); }
  100% { transform: rotate(0deg); }
}
.v2-why-stat-card:hover .v2-why-stat-icon {
  background: rgba(132,204,22,0.25);
  animation: iconSpinFast 2s linear infinite;
  box-shadow: 0 4px 20px rgba(132,204,22,0.2);
}
@keyframes iconSpinFast {
  0%   { transform: rotate(0deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1.1); }
}

.v2-why-stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #65a30d 0%, #84cc16 40%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(132,204,22,0.3));
}

.v2-why-stat-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Advantages Grid — flex wrap centered for 5 cards */
.v2-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.v2-why-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8faf5 60%, #f0f4eb 100%);
  border: 1px solid rgba(132,204,22,0.12);
  border-radius: 24px;
  padding: 60px 32px 40px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: visible;
  width: calc(33.333% - 19px);
  min-width: 300px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.v2-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-lime-dark), rgba(132,204,22,0.15));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.v2-why-card::after {
  content: '';
  position: absolute;
  bottom: 20px; right: 20px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(132,204,22,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.5s ease;
}
.v2-why-card:hover {
  border-color: rgba(132,204,22,0.35);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(26,45,66,0.1), 0 0 0 1px rgba(132,204,22,0.08);
  background: linear-gradient(160deg, #ffffff 0%, #f4f8ed 60%, #edf2e3 100%);
}
.v2-why-card:hover::before { opacity: 1; }
.v2-why-card:hover::after {
  width: 100px; height: 100px;
  opacity: 0.8;
}

.v2-why-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.75;
  margin-top: -55px;
  margin-bottom: 16px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 40%, rgba(132,204,22,0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  transition: all 0.5s ease;
  pointer-events: none;
}
.v2-why-card:hover .v2-why-card-num {
  opacity: 0.35;
  transform: scale(1.05);
}

.v2-why-card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(132,204,22,0.12) 0%, rgba(101,163,13,0.06) 100%);
  border: 1px solid rgba(132,204,22,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 22px;
  color: var(--accent-lime-dark);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 12px rgba(132,204,22,0.08);
}
.v2-why-card:hover .v2-why-card-icon {
  background: linear-gradient(135deg, rgba(132,204,22,0.22) 0%, rgba(101,163,13,0.12) 100%);
  border-color: rgba(132,204,22,0.3);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 24px rgba(132,204,22,0.18);
}

.v2-why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.3;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.v2-why-card p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
  line-height: 1.7;
}

@media(max-width: 768px) {
  .v2-why-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .v2-why-card { width: 100%; min-width: 0; }
}

/* ====== SERVICE CARDS — FLIP CARDS ====== */
.v2-svc-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.v2-svc-header {
  text-align: center;
  margin-bottom: 56px;
}
.v2-svc-header .v2-section-label {
  color: var(--accent-lime-dark);
  margin-bottom: 12px;
}
.v2-svc-header .v2-section-label .line {
  background: var(--accent-lime-dark);
}
.v2-svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--accent-lime-dark) 80%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.v2-svc-subtitle {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.v2-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* === Flip Card Container === */
.v2-flip-wrap {
  perspective: 1200px;
  height: 340px;
  cursor: pointer;
}
.v2-flip-inner {
  position: relative;
  width: 100%; height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.v2-flip-wrap.flipped .v2-flip-inner {
  transform: rotateY(180deg);
}

/* === Front & Back shared === */
.v2-flip-front,
.v2-flip-back {
  position: absolute; inset: 0;
  border-radius: 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  overflow: hidden;
}

/* === Front === */
.v2-flip-front {
  background: linear-gradient(165deg, #ffffff 0%, #f8faf5 40%, #f0f5ea 100%);
  border: 1px solid rgba(132,204,22,0.1);
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.5s ease;
}
.v2-flip-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-lime-dark), rgba(132,204,22,0.1));
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.v2-flip-wrap:hover .v2-flip-front {
  border-color: rgba(132,204,22,0.3);
  box-shadow: 0 20px 60px rgba(26,45,66,0.1), 0 0 0 1px rgba(132,204,22,0.06);
}
.v2-flip-wrap:hover .v2-flip-front::before { opacity: 1; }
.v2-flip-icon {
  width: 88px; height: 88px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(132,204,22,0.08) 0%, rgba(26,45,66,0.04) 100%);
  border: 1px solid rgba(132,204,22,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 16px rgba(132,204,22,0.06);
}
.v2-flip-icon svg {
  width: 44px; height: 44px;
}
.v2-flip-wrap:hover .v2-flip-icon {
  transform: scale(1.12) rotate(5deg);
  background: linear-gradient(145deg, rgba(132,204,22,0.18) 0%, rgba(101,163,13,0.06) 100%);
  border-color: rgba(132,204,22,0.3);
  box-shadow: 0 8px 28px rgba(132,204,22,0.15);
}
.v2-flip-front h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.v2-flip-hint {
  font-size: 0.75rem;
  color: var(--accent-lime-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.5;
  margin-top: auto;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.v2-flip-hint i { margin-right: 0; }
.v2-flip-wrap:hover .v2-flip-hint {
  opacity: 1;
  transform: translateX(4px);
}

/* === Back === */
.v2-flip-back {
  background: linear-gradient(160deg, #1a2d42 0%, #1e3554 50%, #243b55 100%);
  border: 1px solid rgba(132,204,22,0.25);
  transform: rotateY(180deg);
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.v2-flip-back::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,0.4), transparent);
  border-radius: 2px;
}
.v2-flip-back p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 28px;
}
.v2-svc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-dark));
  color: var(--navy-900); padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  text-decoration: none; letter-spacing: 0.5px;
  border: none;
  transition: all 0.4s ease; align-self: flex-start;
  box-shadow: 0 4px 20px rgba(132,204,22,0.3);
}
.v2-svc-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 32px rgba(132,204,22,0.45);
}

@media(max-width:1024px) {
  .v2-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .v2-flip-wrap { height: 310px; }
}
@media(max-width:640px) {
  .v2-svc-grid { grid-template-columns: 1fr; }
  .v2-flip-wrap { height: 290px; }
}

/* ====== CTA SECTION ====== */
.v2-cta {
  position: relative; padding: 120px 0; overflow: hidden;
}
.v2-cta-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.v2-cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,22,40,0.88), rgba(15,31,61,0.82));
}
.v2-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 780px; margin: 0 auto; }
.v2-cta-label {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-lime);
  margin-bottom: 20px;
  font-weight: 700;
}
.v2-cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.v2-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-dark));
  color: var(--navy-900); padding: 18px 48px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 16px; text-decoration: none;
  box-shadow: 0 8px 32px rgba(132,204,22,0.3);
  transition: var(--transition); text-transform: uppercase;
  letter-spacing: 1px;
}
.v2-cta-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 40px rgba(132,204,22,0.4); }

/* ====== TESTIMONIALS — SPOTLIGHT CAROUSEL ====== */
.v2-testi-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0f1f3d 50%, #0a1628 100%);
  overflow: hidden;
}
.v2-testi-header {
  text-align: center;
  margin-bottom: 56px;
}
.v2-testi-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 16px;
}
.v2-testi-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Carousel container */
.v2-spot-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
  min-height: 380px;
}

/* Track — holds the 3 cards */
.v2-spot-track {
  position: relative;
  height: 360px;
  perspective: 1000px;
}

/* Individual card */
.v2-spot-card {
  position: absolute;
  top: 0; left: 50%;
  width: 420px;
  transform: translateX(-50%) scale(0.75);
  background: linear-gradient(160deg, #162236 0%, #1e3350 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  opacity: 0.4;
  filter: blur(2px);
  transition: all 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

/* Active (center) */
.v2-spot-card.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 10;
  pointer-events: auto;
  border-color: rgba(132,204,22,0.25);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(132,204,22,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Left */
.v2-spot-card.left {
  transform: translateX(-120%) scale(0.7) rotateY(15deg);
  opacity: 0.3;
}

/* Right */
.v2-spot-card.right {
  transform: translateX(20%) scale(0.7) rotateY(-15deg);
  opacity: 0.3;
}

/* Metric counter */
.v2-spot-metric-wrap {
  margin-bottom: 20px;
}
.v2-spot-metric {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-lime) 0%, #d4f284 50%, var(--accent-lime-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.v2-spot-metric-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}

/* Image */
.v2-spot-img {
  width: 90px; height: 90px;
  border-radius: 18px;
  overflow: hidden;
  margin: 16px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 2px solid rgba(132,204,22,0.2);
}
.v2-spot-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Description */
.v2-spot-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 12px;
}

/* Arrows */
.v2-spot-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.v2-spot-arrow:hover {
  background: rgba(132,204,22,0.15);
  border-color: rgba(132,204,22,0.3);
  color: var(--accent-lime);
}
.v2-spot-prev { left: -24px; }
.v2-spot-next { right: -24px; }

/* Dots */
.v2-spot-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 28px;
}
.v2-spot-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.v2-spot-dot.active {
  background: var(--accent-lime);
  box-shadow: 0 0 12px rgba(132,204,22,0.4);
  transform: scale(1.2);
}

/* Progress bar */
.v2-spot-progress {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  margin: 16px auto 0;
  overflow: hidden;
}
.v2-spot-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-lime), var(--accent-lime-dark));
  border-radius: 3px;
}

/* Success Banner */
.v2-testi-banner {
  max-width: 900px;
  margin: 0 auto;
}
.v2-testi-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 24px;
}
.v2-testi-banner-img {
  width: 100px;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.v2-testi-banner-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.v2-testi-banner-text ul {
  list-style: none;
  padding: 0;
}
.v2-testi-banner-text li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.88rem;
}
.v2-testi-banner-text li strong {
  display: block;
  color: var(--accent-lime);
  font-size: 0.95rem;
}
.v2-testi-banner-text li span {
  color: var(--text-muted);
  font-size: 0.82rem;
}
.v2-testi-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.v2-testi-proof-col {
  position: relative;
}
.v2-testi-proof-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.v2-testi-proof-col img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}
.v2-testi-proof-col img:hover {
  transform: scale(1.02);
}

@media(max-width:768px) {
  .v2-spot-card { width: 300px; padding: 28px 20px; }
  .v2-spot-card.left { transform: translateX(-110%) scale(0.65); }
  .v2-spot-card.right { transform: translateX(10%) scale(0.65); }
  .v2-spot-arrow { display: none; }
  .v2-spot-track { height: 340px; }
  .v2-testi-banner-content { flex-direction: column; }
  .v2-testi-proof-grid { grid-template-columns: 1fr; }
}

/* ====== FOOTER ====== */
.v2-footer {
  background: #ffffff; padding: 80px 0 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.v2-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: start; }
.v2-footer-logo { height: 40px; margin-bottom: 24px; filter: none; }
.v2-footer h2 {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem,3vw,2.4rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--accent-lime-dark) 80%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.v2-footer .footer-desc-text { color: var(--text-dark-muted); font-size: 1rem; margin-bottom: 28px; max-width: 460px; }
.v2-footer-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-lime-dark));
  color: var(--navy-900); padding: 14px 32px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 14px; text-decoration: none; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(132,204,22,0.2); transition: var(--transition);
}
.v2-footer-btn:hover { transform: translateY(-2px) scale(1.03); }
.v2-footer-nav h3 {
  color: var(--accent-lime-dark); text-transform: uppercase; letter-spacing: 2px;
  font-size: 0.8rem; font-weight: 800; margin-bottom: 20px;
}
.v2-footer-nav ul { list-style: none; padding: 0; }
.v2-footer-nav li {
  color: var(--text-dark-muted); padding: 8px 0; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  transition: var(--transition); cursor: default;
}
.v2-footer-nav li:hover { color: var(--navy-900); transform: translateX(6px); }
.v2-footer-nav li i { color: var(--accent-lime-dark); font-size: 0.75rem; }
.v2-footer-copy {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08);
  text-align: center; color: var(--text-dark-muted); font-size: 0.8rem;
}

@media(max-width:768px) {
  .v2-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ====== WHATSAPP FLOAT ====== */
.v2-whatsapp {
  position: fixed; right: 24px; bottom: 24px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  animation: waBounce 3s infinite; transition: var(--transition);
}
.v2-whatsapp:hover { transform: scale(1.12) rotate(8deg); box-shadow: 0 12px 36px rgba(37,211,102,0.45); }
.v2-whatsapp img { width: 28px; height: 28px; filter: brightness(0) invert(1); }
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ====== SCROLL REVEAL ====== */
.v2-reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1); }
.v2-reveal.visible { opacity: 1; transform: translateY(0); }
.v2-reveal-delay-1 { transition-delay: 0.1s; }
.v2-reveal-delay-2 { transition-delay: 0.2s; }
.v2-reveal-delay-3 { transition-delay: 0.3s; }

/* ====== FOCUS / A11Y ====== */
*:focus { outline: 2px solid var(--accent-lime); outline-offset: 2px; }
.sr-only { position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important; }
