/* ==========================================================
   NSI Solutions Sdn Bhd — Main Stylesheet
   Inspired by Petronas corporate website design language
   ========================================================== */

/* ── 1. CSS Custom Properties ────────────────────────────── */
:root {
  --clr-primary:     #5bc8e8;   /* Brand sky-blue */
  --clr-secondary:   #eef000;   /* Brand yellow   */
  --clr-accent:      #7de87b;   /* Brand green    */
  --clr-dark:        #111418;   /* Deep charcoal  */
  --clr-dark-2:      #1a1f26;   /* Section dark   */
  --clr-dark-3:      #222930;   /* Card dark      */
  --clr-text:        #e8ecf0;   /* Light text     */
  --clr-muted:       #8a9bac;   /* Muted text     */
  --clr-border:      rgba(91,200,232,0.15);
  --nav-height:      72px;
  --section-pad:     100px;
  --max-w:           1280px;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --shadow-card:     0 8px 40px rgba(0,0,0,0.45);
  --shadow-glow:     0 0 40px rgba(91,200,232,0.25);
  --trans-fast:      0.2s ease;
  --trans-med:       0.4s ease;
  --trans-slow:      0.7s cubic-bezier(0.16,1,0.3,1);
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--clr-dark);
  color: var(--clr-text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. Preloader ────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--clr-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 90px; height: 90px;
  margin: 0 auto 24px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-logo img { width: 100%; border-radius: 50%; }

@keyframes preloaderPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.08); opacity: 0.85; }
}

.preloader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  border-radius: 99px;
  animation: preloaderLoad 2s ease forwards;
}
@keyframes preloaderLoad {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── 4. Navigation ───────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(17,20,24,0.6);
  backdrop-filter: blur(12px);
  transition: background var(--trans-med), box-shadow var(--trans-med), backdrop-filter var(--trans-med);
}
.navbar.scrolled {
  background: rgba(17,20,24,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 rgba(91,200,232,0.12);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--trans-fast);
}
.nav-logo:hover .logo-img { transform: rotate(10deg) scale(1.05); }

.logo-text {
  font-size: 1.1rem; font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.4px;
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--clr-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans-med);
  border-radius: 99px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--clr-primary); }

.nav-cta {
  background: var(--clr-primary);
  color: var(--clr-dark) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast) !important;
}
.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(91,200,232,0.4);
}
.nav-cta::after { display: none; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 99px;
  transition: transform var(--trans-med), opacity var(--trans-fast);
}

/* ── 5. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  border-radius: 99px;
  transition: all var(--trans-fast);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-dark);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,200,232,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-outline:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
  background: rgba(91,200,232,0.08);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--clr-text);
}
.btn-outline-dark:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn-ezyshare {
  background: linear-gradient(135deg, #f5a623 0%, #f0d000 100%);
  color: #1a1200;
  font-size: 1.05rem;
  padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(245,166,35,0.35);
}
.btn-ezyshare:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(245,166,35,0.55);
}

.mt-4 { margin-top: 28px; }

/* ── 6. Section Shared Styles ────────────────────────────── */
.section {
  padding: var(--section-pad) 32px;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--clr-primary);
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.light    { color: var(--clr-primary); }

.eyebrow-line {
  display: block; flex: 1; max-width: 40px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 99px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-title.centered { text-align: center; }
.section-title.light    { color: #fff; }

.section-lead {
  font-size: 1.1rem; color: var(--clr-muted); line-height: 1.7;
  margin-top: 20px; max-width: 680px;
}
.section-lead.centered { text-align: center; margin: 20px auto 0; }
.section-lead.light    { color: rgba(255,255,255,0.75); }

.section-body { color: var(--clr-muted); margin-top: 14px; }
.section-body.light { color: rgba(255,255,255,0.7); }

.text-accent        { color: var(--clr-primary); }
.text-accent-yellow { color: var(--clr-secondary); }

/* ── 7. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 60px 80px 160px; /* extra bottom padding so content clears the stats bar */
  overflow: hidden;
}

#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1; pointer-events: none;
}

/* ── Hero background slideshow ── */
.hero-slides-wrap {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1.03);
  animation: heroSlideZoom 10s ease-in-out infinite alternate;
}
@keyframes heroSlideZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.10); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,14,20,0.88) 0%,
    rgba(10,14,20,0.55) 45%,
    rgba(10,14,20,0.25) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 740px;
  padding-top: 0;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(91,200,232,0.12);
  border: 1px solid rgba(91,200,232,0.25);
  color: var(--clr-primary);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.tag-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-primary);
  animation: tagBlink 1.5s ease infinite;
}
@keyframes tagBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

.hero-title {
  display: flex; flex-direction: column;
  gap: 0;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-line { display: block; overflow: hidden; }
.hero-line.highlight { color: var(--clr-primary); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Scroll indicator — positioned above the stats bar */
.scroll-indicator {
  position: absolute; bottom: 130px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-arrow { display: flex; flex-direction: column; align-items: center; }
.scroll-arrow span {
  display: block; width: 10px; height: 10px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  margin-top: -6px;
  animation: scrollArrow 1.5s ease infinite;
}
.scroll-arrow span:nth-child(2) { animation-delay: 0.15s; }
.scroll-arrow span:nth-child(3) { animation-delay: 0.30s; }
@keyframes scrollArrow {
  0%,100% { opacity: 0; } 50% { opacity: 1; }
}

/* Hero stats bar — sits BELOW the hero content, not overlapping it */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3;
  display: flex; justify-content: center;
  background: rgba(10,14,20,0.82);
  backdrop-filter: blur(16px) saturate(150%);
  border-top: 1px solid rgba(91,200,232,0.18);
  /* ensure it never overlaps the hero text */
  max-height: 120px;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 18px 44px;
  gap: 2px;
}
.stat-number {
  font-size: 2rem; font-weight: 900;
  color: var(--clr-primary);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-plus { font-size: 1.5rem; font-weight: 900; color: var(--clr-primary); }
.stat-label {
  font-size: 0.72rem; font-weight: 500;
  color: var(--clr-muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  background: rgba(91,200,232,0.15);
  margin: 12px 0;
  align-self: stretch;
}

/* Slide dots */
.hero-slides-indicator {
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex; flex-direction: column; gap: 10px;
}
.slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all var(--trans-fast);
  padding: 0;
}
.slide-dot.active {
  background: var(--clr-primary);
  transform: scale(1.4);
  box-shadow: 0 0 8px var(--clr-primary);
}

/* ── 8. ABOUT SECTION ────────────────────────────────────── */
.about-section {
  background: var(--clr-dark);
  padding: var(--section-pad) 0;
}

.about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-section .section-eyebrow {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.about-visual {
  position: relative;
}

.about-img-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(17,20,24,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(91,200,232,0.2);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}
.about-img-badge img {
  width: 36px; height: 36px; border-radius: 50%;
}
.about-img-badge strong { display: block; font-size: 0.9rem; color: #fff; }
.about-img-badge small  { font-size: 0.75rem; color: var(--clr-muted); }

.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--clr-dark);
  box-shadow: var(--shadow-card);
}
.about-img-secondary img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-content { padding-right: 16px; }

.about-values {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 28px;
}
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color var(--trans-fast), transform var(--trans-fast);
}
.value-item:hover {
  border-color: var(--clr-primary);
  transform: translateX(4px);
}
.value-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-item:hover .value-icon {
  transform: scale(1.1);
}
/* Vision icon — theme primary blue */
.value-item:first-child .value-icon {
  background: rgba(91,200,232,0.12);
  border: 1.5px solid rgba(91,200,232,0.3);
  color: var(--clr-primary);
  box-shadow: 0 0 14px rgba(91,200,232,0.15);
}
.value-item:first-child:hover .value-icon {
  box-shadow: 0 0 22px rgba(91,200,232,0.3);
}
/* Mission icon — theme accent green */
.value-item:last-child .value-icon {
  background: rgba(125,232,123,0.12);
  border: 1.5px solid rgba(125,232,123,0.3);
  color: var(--clr-accent);
  box-shadow: 0 0 14px rgba(125,232,123,0.15);
}
.value-item:last-child:hover .value-icon {
  box-shadow: 0 0 22px rgba(125,232,123,0.3);
}
.value-item strong { display: block; color: #fff; font-size: 1rem; margin-bottom: 6px; }
.value-item p { font-size: 0.86rem; color: var(--clr-muted); margin: 0; line-height: 1.65; }

/* ── 9. EZYSHARE SECTION ─────────────────────────────────── */
.ezyshare-section {
  background: linear-gradient(135deg, #0a0f1a 0%, #0d1521 50%, #0a1520 100%);
  padding: var(--section-pad) 32px;
  position: relative;
  overflow: hidden;
}

.ezyshare-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(91,200,232,0.06) 0%, transparent 70%);
  pointer-events: none;
}

#ezyCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.5; pointer-events: none;
}

.ezyshare-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

.ezy-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.ezy-feature {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,200,232,0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--trans-fast), background var(--trans-fast), transform var(--trans-fast);
}
.ezy-feature:hover {
  border-color: var(--clr-primary);
  background: rgba(91,200,232,0.06);
  transform: translateY(-3px);
}
.ezy-icon {
  font-size: 1.5rem; color: var(--clr-primary);
  margin-bottom: 10px;
}
.ezy-feature h4 { font-size: 0.95rem; color: #fff; margin-bottom: 6px; }
.ezy-feature p  { font-size: 0.82rem; color: var(--clr-muted); line-height: 1.5; }

.ezy-cta { margin-top: 40px; }
.ezy-note { font-size: 0.8rem; color: var(--clr-muted); margin-top: 10px; }

/* Browser mockup */
.ezyshare-mockup { position: relative; }

.mockup-screen {
  background: #0d1521;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(91,200,232,0.2);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(91,200,232,0.1);
}

.mockup-header {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(91,200,232,0.1);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  padding: 4px 12px;
  font-size: 0.75rem; color: var(--clr-muted);
  text-align: center;
}

.mockup-content {
  padding: 28px;
}

.mock-logo {
  display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.mock-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: contain; }
/* EzyShare logo has white bg — keep it circular and crisp */
.mock-ezy-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  box-shadow: 0 0 0 2px rgba(218,165,32,0.5), 0 4px 14px rgba(218,165,32,0.25);
}
.mock-logo span {
  font-size: 1.35rem; font-weight: 800;
  background: linear-gradient(135deg, #f5a623, #f0d000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mock-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  margin-bottom: 24px;
}
.mock-stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,200,232,0.12);
  border-radius: var(--radius-sm);
  padding: 14px; text-align: center;
}
.mock-stat-card.accent { border-color: #f5a623; background: rgba(245,166,35,0.08); }
.mock-stat-card i { font-size: 1.2rem; color: var(--clr-primary); display: block; margin-bottom: 6px; }
.mock-stat-card.accent i { color: #f5a623; }
.mock-stat-card strong { display: block; font-size: 1rem; color: #fff; }
.mock-stat-card small  { font-size: 0.7rem; color: var(--clr-muted); }

.mock-bar-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 80px; margin-bottom: 20px;
  padding: 0 4px;
}
.mock-bar {
  flex: 1; height: var(--h);
  background: rgba(91,200,232,0.25);
  border-radius: 4px 4px 0 0;
  display: flex; align-items: flex-end; justify-content: center;
  font-size: 0.6rem; color: var(--clr-muted); padding-bottom: 4px;
  transition: height 1s ease;
}
.mock-bar.active { background: linear-gradient(180deg, #f5a623, #f0d000); }
.mock-bar span { writing-mode: vertical-rl; }

.mock-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 13px;
  background: linear-gradient(90deg, #5bc8e8 0%, #f5a623 50%, #f0d000 100%);
  color: var(--clr-dark);
  font-weight: 700; font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
  letter-spacing: 0.2px;
}
.mock-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}

.mockup-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,0.14) 0%, rgba(91,200,232,0.06) 60%, transparent 80%);
  pointer-events: none; z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.1); }
}

/* ── 10. SOLUTIONS SECTION ───────────────────────────────── */
.solutions-section {
  background: var(--clr-dark-2);
}

.solutions-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  max-width: var(--max-w); margin: 48px auto 0;
  justify-content: center;
}

.sol-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  color: var(--clr-muted);
  font-family: inherit; font-size: 0.9rem; font-weight: 600;
  transition: all var(--trans-fast);
}
.sol-tab:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.sol-tab.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-dark);
}

.solutions-panels { max-width: var(--max-w); margin: 40px auto 0; }

.sol-panel { display: none; }
.sol-panel.active { display: block; animation: panelIn 0.4s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sol-cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.sol-card {
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--trans-fast), border-color var(--trans-fast), box-shadow var(--trans-fast);
  position: relative; overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), transparent);
  opacity: 0;
  transition: opacity var(--trans-fast);
}
.sol-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,200,232,0.3);
  box-shadow: var(--shadow-card);
}
.sol-card:hover::before { opacity: 1; }

.sol-card.featured {
  border-color: rgba(238,240,0,0.3);
  background: linear-gradient(145deg, var(--clr-dark-3), rgba(238,240,0,0.04));
}
.sol-card.featured::before {
  background: linear-gradient(90deg, var(--clr-secondary), transparent);
  opacity: 1;
}

.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--clr-secondary);
  color: var(--clr-dark);
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 99px;
}

.sol-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(var(--ic-rgb, 91,200,232), 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--ic);
  margin-bottom: 20px;
  transition: transform var(--trans-fast);
}
.sol-card:hover .sol-card-icon { transform: scale(1.1) rotate(-5deg); }

.sol-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.sol-card p  { font-size: 0.88rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: 16px; }

.sol-list { display: flex; flex-direction: column; gap: 8px; }
.sol-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--clr-muted);
}
.sol-list li i { color: var(--clr-primary); font-size: 0.75rem; }

.sol-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  color: var(--clr-secondary);
  font-size: 0.88rem; font-weight: 600;
  transition: gap var(--trans-fast);
}
.sol-link:hover { gap: 10px; }

/* Process steps */
.process-section {
  max-width: var(--max-w); margin: 80px auto 0;
  text-align: center;
}
.process-title {
  font-size: 1.6rem; font-weight: 700; color: #fff;
  margin-bottom: 48px;
}
.process-steps {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap; justify-content: center;
}
.process-step {
  flex: 1; min-width: 180px; max-width: 220px;
  background: var(--clr-dark-3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--clr-primary);
}
.step-num {
  font-size: 0.75rem; font-weight: 800;
  color: var(--clr-primary); letter-spacing: 2px;
  margin-bottom: 12px;
}
.step-icon {
  font-size: 1.8rem; color: var(--clr-primary);
  margin-bottom: 14px;
}
.process-step h4 { font-size: 0.95rem; color: #fff; margin-bottom: 8px; }
.process-step p  { font-size: 0.82rem; color: var(--clr-muted); }

.process-arrow {
  font-size: 1.2rem; color: var(--clr-border);
  padding: 0 16px; flex-shrink: 0;
}

/* ── 11. CUSTOMERS SECTION ───────────────────────────────── */
.customers-section {
  background: linear-gradient(135deg, #080d15 0%, #0c1320 100%);
  position: relative; overflow: hidden;
}
.customers-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(125,232,123,0.05) 0%, transparent 70%);
}

/* Logo marquee */
.customer-marquee {
  overflow: hidden;
  margin: 48px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.customer-logo-item {
  flex-shrink: 0;
}
.logo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  width: 160px; height: 100px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  justify-content: center;
  font-size: 0.8rem; color: var(--clr-muted);
  transition: border-color var(--trans-fast), background var(--trans-fast);
}
.logo-placeholder i { font-size: 1.6rem; color: var(--clr-primary); }
.logo-placeholder:hover {
  border-color: rgba(91,200,232,0.3);
  background: rgba(91,200,232,0.05);
  color: #fff;
}

/* Testimonials */
.testimonials {
  max-width: 760px; margin: 0 auto 60px;
}
.testimonials-header h3 {
  text-align: center; font-size: 1.5rem; color: #fff;
  margin-bottom: 36px;
}

.testimonial-slider { position: relative; min-height: 230px; }

.testimonial-card {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(91,200,232,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  animation: testFadeIn 0.5s ease;
}
.testimonial-card.active { display: block; }
@keyframes testFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-quote i { font-size: 2rem; color: var(--clr-primary); opacity: 0.5; margin-bottom: 16px; }
.testimonial-card p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 24px; }

.testimonial-author {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(91,200,232,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--clr-primary);
}
.testimonial-author strong { display: block; color: #fff; }
.testimonial-author small  { color: var(--clr-muted); font-size: 0.82rem; }

.testimonial-stars { color: var(--clr-secondary); font-size: 0.9rem; }

.testimonial-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 24px;
}
.testimonial-prev, .testimonial-next {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(91,200,232,0.2);
  color: var(--clr-primary);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans-fast);
}
.testimonial-prev:hover, .testimonial-next:hover {
  background: var(--clr-primary); color: var(--clr-dark);
}
.testimonial-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all var(--trans-fast);
}
.t-dot.active { background: var(--clr-primary); transform: scale(1.4); }

/* Industry stats */
.industry-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  max-width: var(--max-w); margin: 0 auto;
  position: relative; z-index: 1;
}
.industry-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,200,232,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  transition: transform var(--trans-fast), border-color var(--trans-fast);
}
.industry-stat:hover {
  transform: translateY(-4px);
  border-color: var(--clr-accent);
}
.ind-icon { font-size: 2rem; color: var(--clr-accent); margin-bottom: 12px; }
.ind-number { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.ind-label  { font-size: 0.82rem; color: var(--clr-muted); }

/* ── 12. PARTNERS SECTION ────────────────────────────────── */
/* =====================================================
   PARTNERS V2 — PREMIUM PARTNER SHOWCASE
   ===================================================== */

.ptnv2-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: linear-gradient(170deg, #0b1220 0%, #0e1a2e 55%, #091525 100%);
}

/* Background dots */
.ptnv2-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Glow orbs */
.ptnv2-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  animation: ptnGlowFloat 7s ease-in-out infinite;
}
.ptnv2-gl1 { width: 480px; height: 480px; top: -60px; left: -100px;
  background: radial-gradient(circle, rgba(91,200,232,0.07), transparent 70%); }
.ptnv2-gl2 { width: 360px; height: 360px; bottom: 0; right: -60px;
  background: radial-gradient(circle, rgba(245,166,35,0.06), transparent 70%);
  animation-delay: -3.5s; }
@keyframes ptnGlowFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(10px,-16px) scale(1.06); }
}

/* Header */
.ptnv2-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  position: relative; z-index: 2;
}

/* ── Featured 6-card grid ── */
.ptnv2-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto 60px;
  position: relative; z-index: 2;
}

/* Individual partner card */
.ptnv2-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.36s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.3s ease,
              box-shadow 0.36s ease;
}
.ptnv2-card:hover {
  transform: translateY(-10px);
  border-color: var(--pc, #5bc8e8);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5),
              0 0 0 1px var(--pc, #5bc8e8),
              0 0 32px rgba(0,0,0,0.3);
}

/* Top accent glow on hover */
.ptnv2-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pc, #5bc8e8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}
.ptnv2-card:hover .ptnv2-card-glow { transform: scaleX(1); }

/* Logo area — top square */
.ptnv2-logo-area {
  width: 100%;
  aspect-ratio: 16/9;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.ptnv2-logo-area img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform 0.4s ease;
}
.ptnv2-card:hover .ptnv2-logo-area img {
  transform: scale(1.05);
}

/* Pink/icon logo — keep white bg, add subtle padding for icon-only logos */
.ptnv2-logo-pink {
  background: #fff;
  padding: 28px 40px;
}
.ptnv2-logo-pink img {
  max-height: 110px;
  width: auto;
}

/* Text-based logo (for partners without images) */
.ptnv2-logo-text {
  background: #111d2e !important;
}
.ptnv2-text-logo {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.ptnv2-text-logo i {
  font-size: 1.6rem;
  color: var(--pc, #5bc8e8);
  display: block;
  margin-bottom: 6px;
}

/* Card body */
.ptnv2-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ptnv2-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  transition: color 0.3s ease;
}
.ptnv2-card:hover .ptnv2-card-body h4 {
  color: var(--pc, #5bc8e8);
}
.ptnv2-card-body p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.ptnv2-link-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pc, #5bc8e8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s ease, gap 0.2s ease;
}
.ptnv2-card:hover .ptnv2-link-tag {
  opacity: 1;
  gap: 8px;
}

/* ── SmartKotak card overrides ── */
/* "SmartKotak" title: white by default, green on hover */
.smartkotak-card .ptnv2-card-body h4 {
  color: #fff;
}
.smartkotak-card:hover .ptnv2-card-body h4 {
  color: #22c55e;
}
/* "Visit" tag: always green, full opacity, brighter + shifted on hover */
.smartkotak-visit {
  color: #22c55e !important;
  opacity: 1 !important;
  transition: color 0.25s ease, gap 0.2s ease, text-shadow 0.25s ease;
}
.smartkotak-card:hover .smartkotak-visit {
  color: #4ade80 !important;
  gap: 9px;
  text-shadow: 0 0 8px rgba(34,197,94,0.5);
}

/* ── Additional partners badges ── */
.ptnv2-more-wrap {
  max-width: 1160px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative; z-index: 2;
}
.ptnv2-more-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.ptnv2-more-label i { color: #5bc8e8; }

.ptnv2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ptnv2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 99px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  cursor: default;
  transition: background 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ptnv2-badge::before {
  content: '';
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bc, #5bc8e8);
  opacity: 0.8;
}
.ptnv2-badge {
  padding-left: 26px;
}
.ptnv2-badge:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bc, #5bc8e8);
  color: #fff;
  transform: translateY(-3px);
}

/* ── CTA Banner ── */
.ptnv2-cta {
  max-width: 1160px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.ptnv2-cta-inner {
  background: linear-gradient(120deg,
    rgba(91,200,232,0.1) 0%,
    rgba(91,200,232,0.04) 50%,
    rgba(245,193,35,0.07) 100%
  );
  border: 1px solid rgba(91,200,232,0.2);
  border-radius: 20px;
  padding: 44px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ptnv2-cta-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.ptnv2-cta-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.ptnv2-cta .btn i {
  transition: transform 0.2s ease;
}
.ptnv2-cta .btn:hover i {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1000px) {
  .ptnv2-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .ptnv2-section { padding: 72px 16px 60px; }
  .ptnv2-featured-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .ptnv2-card-body { padding: 14px 16px 18px; }
  .ptnv2-card-body h4 { font-size: 0.88rem; }
  .ptnv2-cta-inner { padding: 28px 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 400px) {
  .ptnv2-featured-grid { grid-template-columns: 1fr; }
}

/* ── 13. CONTACT SECTION ─────────────────────────────────── */
.contact-section {
  background: linear-gradient(135deg, #050a12 0%, #0a1420 100%);
  position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(91,200,232,0.06) 0%, transparent 70%);
}

.contact-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}

.contact-details {
  display: flex; flex-direction: column; gap: 20px;
  margin-top: 40px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(91,200,232,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--clr-primary);
}
.contact-item strong { display: block; color: #fff; margin-bottom: 2px; font-size: 0.88rem; }
.contact-item p { color: var(--clr-muted); font-size: 0.9rem; }

.contact-social {
  display: flex; gap: 12px; margin-top: 32px;
}
.social-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-muted);
  font-size: 1rem;
  transition: all var(--trans-fast);
}
.social-btn:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
  background: rgba(91,200,232,0.08);
  transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(91,200,232,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-size: 1.4rem; color: #fff; margin-bottom: 28px;
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: rgba(255,255,255,0.7); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: inherit; font-size: 0.92rem;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--clr-dark-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(91,200,232,0.12);
}

.form-submit {
  width: 100%; justify-content: center;
  font-size: 1rem;
}

.form-success {
  display: none; align-items: center; gap: 12px;
  margin-top: 16px;
  background: rgba(125,232,123,0.1);
  border: 1px solid rgba(125,232,123,0.25);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--clr-accent);
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.3rem; }
.form-success p { margin: 0; font-size: 0.9rem; }

/* ── 14. FOOTER ──────────────────────────────────────────── */
.footer {
  background: #060a10;
  border-top: 1px solid rgba(91,200,232,0.08);
}

.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 60px 32px;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 80px;
}

.footer-brand {
  display: flex; align-items: flex-start; gap: 16px;
}
.footer-logo {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 50%;
}
.footer-brand h4 { font-size: 1rem; color: #fff; margin-bottom: 8px; }
.footer-brand p  { font-size: 0.85rem; color: var(--clr-muted); line-height: 1.6; }

.footer-links-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
}
.footer-col h5 {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--clr-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.87rem; color: var(--clr-muted);
  transition: color var(--trans-fast);
}
.footer-col a:hover { color: var(--clr-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 32px;
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: var(--clr-muted); }
.footer-legal {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem;
}
.footer-legal a { color: var(--clr-muted); transition: color var(--trans-fast); }
.footer-legal a:hover { color: var(--clr-primary); }
.footer-legal span { color: rgba(255,255,255,0.15); }

/* ── 15. BACK TO TOP ─────────────────────────────────────── */
.back-to-top {
  position: fixed;
  /* junie widget: bottom 28px + 62px button + 8px gap + 22px tooltip ≈ 120px;
     add 20px clearance = 140px total from bottom */
  bottom: 155px; right: 35px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--clr-primary);
  color: var(--clr-dark);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(91,200,232,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--trans-fast);
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* ── 15b. TOP ANNOUNCEMENT BAR ───────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--clr-dark-2), rgba(91,200,232,0.08), var(--clr-dark-2));
  border-bottom: 1px solid rgba(91,200,232,0.12);
  padding: 8px 0;
  overflow: hidden;
  position: relative; z-index: 1001;
  top: 0; left: 0; right: 0;
}
.announce-inner {
  display: flex; align-items: center; gap: 32px;
  animation: announceTick 30s linear infinite;
  width: max-content;
}
.announce-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.65);
  white-space: nowrap; padding: 0 24px;
}
.announce-item i { color: var(--clr-primary); }
.announce-item strong { color: var(--clr-primary); }
@keyframes announceTick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 16. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-grid       { gap: 48px; }
  .ezyshare-container { gap: 48px; }
  .footer-top       { gap: 48px; }
  .footer-links-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }

  .about-grid,
  .ezyshare-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-secondary { display: none; }

  .ezyshare-mockup { display: none; }

  .sol-cards-grid      { grid-template-columns: 1fr 1fr; }
  .industry-stats      { grid-template-columns: 1fr 1fr; }
  .partner-tiers       { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 80px; }
  .tier-card.featured  { transform: none; }
  .tier-card.featured:hover { transform: translateY(-8px); }
  .why-grid            { grid-template-columns: 1fr; }
  .footer-top          { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-grid   { grid-template-columns: repeat(2,1fr); }

  .hero { padding: 60px 32px 160px; }
  .stat-item { padding: 16px 24px; }
}

@media (max-width: 700px) {
  :root { --section-pad: 56px; }

  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-height) 0 0 0;
    flex-direction: column; justify-content: center; align-items: center;
    background: rgba(17,20,24,0.97);
    backdrop-filter: blur(20px);
    gap: 12px;
    transform: translateX(100%);
    transition: transform var(--trans-med);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 12px 28px; }

  .hero { padding: 48px 20px 180px; text-align: center; align-items: center; }
  .hero-title { font-size: clamp(2.8rem,10vw,4.5rem); letter-spacing: -2px; }
  .hero-actions { justify-content: center; }
  .hero-slides-indicator { display: none; }
  .hero-tag { font-size: 0.7rem; }

  .hero-stats {
    flex-wrap: wrap;
    padding: 8px 0;
    max-height: none; /* allow full height on mobile when wrapping */
  }
  .stat-item { padding: 12px 16px; }
  .stat-divider { display: none; }

  .sol-cards-grid  { grid-template-columns: 1fr; }
  .industry-stats  { grid-template-columns: 1fr 1fr; }
  .process-steps   { flex-direction: column; align-items: stretch; }
  .process-arrow   { transform: rotate(90deg); text-align: center; }

  .ezy-features-grid { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .why-partner { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 40px 16px 180px; }
  .section { padding: 48px 16px; }
  .industry-stats { grid-template-columns: 1fr; }
  .footer-links-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   EZYSHARE DIGITAL ECOSYSTEM — WHEEL + POPUPS
   ===================================================== */

/* ── Section header ─────────────────────────────────── */
.ezy-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.ezy-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ezy-header-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 20px rgba(245,166,35,0.5);
}

.ezy-top-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* ── Wheel wrapper ──────────────────────────────────── */
.ecosystem-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  padding: 20px 16px 60px;
}

/* ── The wheel itself ───────────────────────────────── */
.ecosystem-wheel {
  position: relative;
  width: 560px;
  height: 560px;
  max-width: 90vw;
  max-height: 90vw;
}

/* ── Centre hub ─────────────────────────────────────── */
.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1c2a3a, #0d1521);
  border: 2px solid rgba(245,166,35,0.6);
  box-shadow:
    0 0 0 8px rgba(245,166,35,0.08),
    0 0 40px rgba(245,166,35,0.25),
    inset 0 0 30px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
}

.wheel-center img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
}

.wheel-center span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  text-align: center;
  line-height: 1.3;
}

/* ── Wheel segments ─────────────────────────────────── */
/*
  10 segments — positioned absolutely by JS.
  CSS only handles appearance; JS sets left/top.
*/
.wheel-segment {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;          /* clips backdrop-filter & bg to circle */
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(12, 22, 35, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s cubic-bezier(.34,1.56,.64,1),
              border-color 0.25s, box-shadow 0.25s, background 0.25s;
  z-index: 3;
}

/* Unique accent colour per segment */
.seg-1  { --seg-clr: #e85c1a; }
.seg-2  { --seg-clr: #2aad6e; }
.seg-3  { --seg-clr: #1a7ae8; }
.seg-4  { --seg-clr: #9b2ae8; }
.seg-5  { --seg-clr: #d4a017; }
.seg-6  { --seg-clr: #1ae87a; }
.seg-7  { --seg-clr: #1ab5e8; }
.seg-8  { --seg-clr: #e85c9b; }
.seg-9  { --seg-clr: #e84e1a; }
.seg-10 { --seg-clr: #e8851a; }

.wheel-segment:hover {
  border-color: var(--seg-clr);
  background: rgba(12,22,35,0.96);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--seg-clr) 20%, transparent),
    0 0 24px color-mix(in srgb, var(--seg-clr) 40%, transparent);
  transform: scale(1.12);
  z-index: 5;
}

.wheel-segment.active {
  border-color: var(--seg-clr);
  background: color-mix(in srgb, var(--seg-clr) 18%, rgba(12,22,35,0.95));
  box-shadow:
    0 0 0 5px color-mix(in srgb, var(--seg-clr) 25%, transparent),
    0 0 30px color-mix(in srgb, var(--seg-clr) 50%, transparent);
}

/* Inner content of each segment */
.seg-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  pointer-events: none;
  border-radius: 50%;   /* keeps inner content clipped to circle */
  width: 100%;
  height: 100%;
  justify-content: center;
  box-sizing: border-box;
}

.seg-num {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--seg-clr);
  opacity: 0.9;
}

.seg-inner i {
  font-size: 1.4rem;
  color: var(--seg-clr);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--seg-clr) 60%, transparent));
}

.seg-inner span {
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Connector lines from centre to each segment */
.ecosystem-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(245,166,35,0.15);
  pointer-events: none;
  z-index: 1;
}

/* Orbit ring animation */
@keyframes orbitPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,166,35,0.2); }
  50%       { box-shadow: 0 0 0 12px rgba(245,166,35,0); }
}

.ecosystem-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 490px;
  height: 490px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.06);
  pointer-events: none;
  z-index: 1;
  animation: orbitPulse 3s ease-in-out infinite;
}

/* Hint text */
.wheel-hint {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  letter-spacing: 0.04em;
}

.wheel-hint i { margin-right: 6px; color: var(--clr-primary); }

/* ── Modal overlay ──────────────────────────────────── */
.mod-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mod-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup card ─────────────────────────────────────── */
.mod-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.88);
  width: min(860px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #0d1521;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06);
  z-index: 9100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.34,1.4,.64,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.mod-popup.visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.mod-popup::-webkit-scrollbar { width: 5px; }
.mod-popup::-webkit-scrollbar-track { background: transparent; }
.mod-popup::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* Close button */
.mod-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.mod-close:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

/* Popup inner wrapper — clearfix */
.mod-popup-inner {
  overflow: hidden;
  border-radius: 20px;
}

/* Header band */
.mod-popup-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px 24px;
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--mod-color) 22%, #0d1521) 0%,
    #111d2e 100%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mod-num-badge {
  flex-shrink: 0;
  background: var(--mod-color);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
}

.mod-title-group h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
}

.mod-title-group h3 i {
  color: var(--mod-color);
  margin-right: 8px;
}

.mod-year {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.mod-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-style: italic;
}

/* Body — full-width stacked layout so content never gets squeezed */
.mod-popup-body {
  display: flex;
  flex-direction: column;
}

.mod-img-wrap {
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  max-height: 220px;
  width: 100%;
}

.mod-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.95;
}

.mod-img-secondary {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-height: 160px;
  margin: 0 32px;
  border-radius: 10px;
  overflow: hidden;
}

.mod-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.mod-details {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Detail block heading */
.mod-detail-block h4,
.mod-col h4,
.mod-income-table h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mod-detail-block h4 i,
.mod-col h4 i,
.mod-income-table h4 i {
  color: var(--mod-color);
  font-size: 0.9em;
}

.mod-detail-block p,
.mod-col p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin: 0;
}

/* Two-column layout within popup */
.mod-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.mod-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mod-col ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}

.mod-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mod-color);
}

/* ── Deployment steps — wrap grid so all 5 show fully ── */
.mod-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

@media (max-width: 640px) {
  .mod-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 400px) {
  .mod-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mod-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.mod-step i {
  font-size: 1.3rem;
  color: var(--mod-color);
}

.mod-step strong {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}

.mod-step p {
  font-size: 0.7rem !important;
  color: rgba(255,255,255,0.5) !important;
}

/* ── EzyPreneur journey — grid so all 5 steps are fully visible ── */
.mod-journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 4px;
  width: 100%;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  min-width: 0;
}

.j-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--mod-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--mod-color);
  flex-shrink: 0;
}

.journey-step strong {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  word-break: break-word;
}

.journey-step p {
  font-size: 0.65rem !important;
  color: rgba(255,255,255,0.5) !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.journey-arrow {
  padding-top: 14px;
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  flex-shrink: 0;
  align-self: start;
}

/* ── Income table ───────────────────────────────────── */
.mod-income-table {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  width: 100%;
  box-sizing: border-box;
}

.income-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.income-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.875rem;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

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

.income-row span { color: rgba(255,255,255,0.65); white-space: nowrap; }
.income-row strong { color: rgba(255,255,255,0.9); text-align: right; white-space: nowrap; }
.income-row.accent { background: rgba(42,173,110,0.12); }
.income-row.gold { background: rgba(212,160,23,0.15); }
.income-row.gold strong { color: #f5c842; }

/* ── Payment WOW grid ───────────────────────────────── */
.wow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wow-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 14px 16px;
}

.wow-item strong {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 5px;
}

.wow-item p {
  font-size: 0.77rem !important;
  color: rgba(255,255,255,0.55) !important;
}

/* ── Community members ──────────────────────────────── */
.community-members {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.member-tag {
  background: rgba(155,42,232,0.12);
  border: 1px solid rgba(155,42,232,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.member-tag i { color: #9b2ae8; font-size: 0.55rem; }

/* ── Export stages ──────────────────────────────────── */
.export-stages {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.export-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}

.stage-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mod-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Coming soon badge ──────────────────────────────── */
.mod-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.35);
  color: #f5a623;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-top: 4px;
}

/* ── Responsive — popup ─────────────────────────────── */
@media (max-width: 768px) {
  .mod-img-wrap {
    max-height: 180px;
  }

  .mod-img-wrap img {
    height: 180px;
  }

  .mod-popup-header {
    padding: 20px 20px 18px;
    flex-wrap: wrap;
  }

  .mod-title-group h3 { font-size: 1.1rem; }

  .mod-details { padding: 20px; }

  .mod-cols { grid-template-columns: 1fr; }

  /* Journey on small screens — stacked vertically */
  .mod-journey {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .journey-arrow { display: none; }

  .wow-grid { grid-template-columns: 1fr; }

  /* Wheel responsive — smaller */
  .ecosystem-wheel {
    width: 400px;
    height: 400px;
  }

  .wheel-segment { width: 80px; height: 80px; }

  .wheel-center { width: 110px; height: 110px; }
  .wheel-center img { width: 38px; height: 38px; }
  .seg-inner i { font-size: 1.1rem; }
  .seg-inner span { font-size: 0.52rem; }
  .ecosystem-wheel::before { width: 265px; height: 265px; }
  .ecosystem-wheel::after  { width: 345px; height: 345px; }
}

@media (max-width: 480px) {
  .ecosystem-wheel {
    width: 320px;
    height: 320px;
  }

  .wheel-segment { width: 66px; height: 66px; }

  .wheel-center { width: 88px; height: 88px; }
  .wheel-center img { width: 30px; height: 30px; }
  .seg-inner i { font-size: 0.9rem; }
  .seg-inner span { font-size: 0.45rem; }
  .seg-num { font-size: 0.45rem; }
  .ecosystem-wheel::before { width: 210px; height: 210px; }
  .ecosystem-wheel::after  { width: 276px; height: 276px; }

  .mod-popup { width: 96vw; max-height: 90vh; }
  .mod-popup-header { padding: 16px; }
  .mod-details { padding: 16px; }
  .mod-journey { grid-template-columns: 1fr; }
  .journey-arrow { display: none; }
}

/* =====================================================
   SOLUTIONS — BUSINESS COVERAGE GRID
   ===================================================== */

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin: -8px 0 8px;
  letter-spacing: 0.01em;
}

.section-subtitle.centered { text-align: center; }

/* =====================================================
   SOLUTIONS V2 — PREMIUM INDUSTRY CARDS
   ===================================================== */

/* Section wrapper */
.solv2-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: linear-gradient(180deg, #0b1220 0%, #0d1a2e 60%, #091525 100%);
}

/* Floating particles */
.solv2-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: solParticleFloat 8s ease-in-out infinite;
}
.solv2-p1 { width:320px; height:320px; top:-80px; right:-80px; background:radial-gradient(circle,rgba(91,200,232,0.07),transparent 70%); animation-delay:0s; }
.solv2-p2 { width:240px; height:240px; bottom:40px; left:-60px; background:radial-gradient(circle,rgba(238,240,0,0.06),transparent 70%); animation-delay:-3s; }
.solv2-p3 { width:180px; height:180px; top:45%; right:8%; background:radial-gradient(circle,rgba(125,232,123,0.05),transparent 70%); animation-delay:-5s; }
.solv2-p4 { width:260px; height:260px; bottom:-60px; right:20%; background:radial-gradient(circle,rgba(167,139,250,0.06),transparent 70%); animation-delay:-1.5s; }

@keyframes solParticleFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.06); }
}

/* Header area */
.solv2-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

/* ── Industry Card Grid ── */
/* ── Uniform flex grid — all 11 cards perfectly identical ── */
.solv2-grid {
  --cg: 20px;               /* card gap */
  display: flex;
  flex-wrap: wrap;
  gap: var(--cg);
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0;
  justify-content: center;  /* centres last row naturally */
}

/* Every card identical — 4 per row */
.solv2-card {
  /* (100% - 3 gaps) / 4  per card */
  width: calc(25% - var(--cg) * 3 / 4);
  flex-shrink: 0;
  flex-grow: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
  isolation: isolate;
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s ease;
  box-shadow: 0 4px 24px rgba(0,0,0,0.45);
}

.solv2-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 2px var(--sc,#5bc8e8), 0 0 30px rgba(var(--sc,91,200,232),0.25);
}

/* Photo */
.solv2-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.solv2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.85) brightness(0.75);
}
.solv2-card:hover .solv2-img img {
  transform: scale(1.1);
  filter: saturate(1.1) brightness(0.65);
}

/* Dark gradient overlay */
.solv2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background 0.35s ease;
}
.solv2-card:hover .solv2-overlay {
  background: linear-gradient(180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.3) 30%,
    rgba(0,0,0,0.90) 100%
  );
}

/* Card number badge */
.solv2-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--sc,#5bc8e8);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 3px 9px;
  backdrop-filter: blur(6px);
}

/* Circular icon ring */
.solv2-icon-ring {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 2px solid var(--sc,#5bc8e8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sc,#5bc8e8);
  transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 var(--sc,#5bc8e8);
}
.solv2-card:hover .solv2-icon-ring {
  transform: translateX(-50%) translateY(0) scale(1.12);
  background: var(--sc,#5bc8e8);
  color: #0b1220;
  box-shadow: 0 0 20px rgba(var(--sc,91,200,232), 0.5);
}

/* Card label */
.solv2-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px 14px 16px;
  text-align: center;
}
.solv2-label h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  transition: color 0.3s ease;
}
.solv2-card:hover .solv2-label h4 {
  color: var(--sc,#5bc8e8);
}

/* Bottom accent bar */
.solv2-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--sc,#5bc8e8);
  z-index: 4;
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.solv2-card:hover::after { transform: scaleX(1); }

/* Shine sweep */
.solv2-shine {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 0.6s ease;
  pointer-events: none;
}
.solv2-card:hover .solv2-shine {
  background-position: -100% 0;
}

/* ── How We Work Process ── */
.solv2-process {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.solv2-process-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.solv2-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.solv2-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #5bc8e8, #eef000, #7de87b, #a78bfa);
  z-index: 0;
  opacity: 0.35;
}

.solv2-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.solv2-step-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #5bc8e8;
  position: relative;
  transition: all 0.35s ease;
}
.solv2-step:nth-child(2) .solv2-step-icon { color:#eef000; }
.solv2-step:nth-child(3) .solv2-step-icon { color:#7de87b; }
.solv2-step:nth-child(4) .solv2-step-icon { color:#a78bfa; }

.solv2-step:hover .solv2-step-icon {
  background: rgba(91,200,232,0.12);
  border-color: #5bc8e8;
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(91,200,232,0.3);
}
.solv2-step:nth-child(2):hover .solv2-step-icon { background:rgba(238,240,0,0.1); border-color:#eef000; box-shadow:0 0 24px rgba(238,240,0,0.25); }
.solv2-step:nth-child(3):hover .solv2-step-icon { background:rgba(125,232,123,0.1); border-color:#7de87b; box-shadow:0 0 24px rgba(125,232,123,0.25); }
.solv2-step:nth-child(4):hover .solv2-step-icon { background:rgba(167,139,250,0.1); border-color:#a78bfa; box-shadow:0 0 24px rgba(167,139,250,0.25); }

.solv2-step-line {
  display: none; /* decorative only on desktop */
}

.solv2-step-num {
  font-size: 0.65rem;
  font-weight: 900;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.12em;
}

.solv2-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.solv2-step p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  /* 3 per row on tablets */
  .solv2-grid { --cg: 18px; }
  .solv2-card { width: calc(33.333% - var(--cg) * 2 / 3); }
}
@media (max-width: 768px) {
  /* 2 per row on small tablets */
  .solv2-grid { --cg: 14px; }
  .solv2-card { width: calc(50% - var(--cg) / 2); aspect-ratio: 4/3; }
  .solv2-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .solv2-steps::before { display: none; }
}
@media (max-width: 480px) {
  .solv2-section { padding: 72px 16px; }
  .solv2-grid { --cg: 10px; }
  .solv2-card { width: calc(50% - var(--cg) / 2); aspect-ratio: 4/3; border-radius: 14px; }
  .solv2-icon-ring { width: 40px; height: 40px; font-size: 0.95rem; bottom: 44px; }
  .solv2-label h4 { font-size: 0.75rem; }
  .solv2-steps { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── old biz-card selectors kept for legacy fallback ─── */
.biz-coverage-grid {
  display: none;
}

/* =====================================================
   OLD CUSTOMERS CSS — kept for fallback
   ===================================================== */
/* (replaced by custv2 below) */


/* Last 2 cards centred in their row */
.biz-card-wide-offset {
  grid-column: 1;
}

/* A single business card */
.biz-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: default;
}

.biz-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,193,35,0.45);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,193,35,0.2);
}

/* Photo area */
.biz-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
}

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

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

/* Hexagon icon overlay */
.biz-hex-icon {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: #f5c123;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(245,193,35,0.5);
}

.biz-hex-icon i {
  font-size: 1.15rem;
  color: #1a1a1a;
}

/* Label below the card */
.biz-label {
  padding: 32px 16px 20px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin: 0;
}

/* Last row — 2 cards centred */
@media (min-width: 769px) {
  .biz-coverage-grid .biz-card:nth-child(10),
  .biz-coverage-grid .biz-card:nth-child(11) {
    grid-column: auto;
  }

  /* Push the last 2 into the middle column area */
  .biz-coverage-grid .biz-card:nth-child(10) {
    grid-column-start: 1;
  }
}

@media (max-width: 900px) {
  .biz-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .biz-card-wide-offset { grid-column: auto; }
}

@media (max-width: 520px) {
  .biz-coverage-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .biz-card-img { height: 110px; }
  .biz-hex-icon { width: 40px; height: 40px; bottom: -14px; }
  .biz-hex-icon i { font-size: 0.9rem; }
  .biz-label { font-size: 0.78rem; padding: 26px 10px 14px; }
}

/* =====================================================
   CUSTOMERS V2 — PREMIUM DARK CARD GRID
   ===================================================== */

/* Section wrapper */
.custv2-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  background: linear-gradient(160deg, #060e1a 0%, #0a1628 50%, #061120 100%);
}

/* Dot-grid background */
.custv2-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Glow orbs */
.custv2-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: custGlowPulse 6s ease-in-out infinite;
}
.custv2-gl1 {
  width: 500px; height: 500px;
  top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(91,200,232,0.06), transparent 70%);
  animation-delay: 0s;
}
.custv2-gl2 {
  width: 400px; height: 400px;
  bottom: 40px; right: -80px;
  background: radial-gradient(circle, rgba(245,193,35,0.07), transparent 70%);
  animation-delay: -3s;
}
@keyframes custGlowPulse {
  0%,100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.1) translate(8px,-12px); }
}

/* Header */
.custv2-header {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ── 3-column card grid ── */
.custv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto 64px;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* Individual card */
.custv2-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(4px);
  transition: transform 0.36s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.36s ease, border-color 0.3s ease;
  cursor: default;
}

.custv2-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--ca-rgb, 91,200,232), 0.35);
  box-shadow: 0 20px 56px rgba(0,0,0,0.5), 0 0 0 1px var(--ca, #5bc8e8), 0 0 28px rgba(0,0,0,0.3);
}

/* Top colour accent strip */
.custv2-card-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--ca,#5bc8e8), transparent);
  width: 100%;
}

/* Number badge — top-right corner of card */
.custv2-badge-num {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
  color: var(--ca, #5bc8e8);
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* ── Logo panel (top area of card, prominent) ── */
.custv2-logo-panel {
  width: 100%;
  height: 120px;
  background: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  overflow: hidden;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.custv2-logo-panel.custv2-logo-white {
  background: #ffffff;
}
.custv2-logo-panel.custv2-logo-dark {
  background: #ffffff;
}
.custv2-card:hover .custv2-logo-panel {
  background: #f5f5f5;
  box-shadow: inset 0 -2px 8px rgba(0,0,0,0.06);
}
.custv2-card:hover .custv2-logo-panel.custv2-logo-white {
  background: #f5f5f5;
}
.custv2-card:hover .custv2-logo-panel.custv2-logo-dark {
  background: #f5f5f5;
}
.custv2-logo-panel img {
  max-width: 100%;
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.custv2-card:hover .custv2-logo-panel img {
  transform: scale(1.06);
}

/* Card inner padding */
.custv2-card-inner {
  padding: 0;
}

/* Company name + industry tag */
.custv2-info {
  padding: 14px 18px 6px;
}
.custv2-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  line-height: 1.3;
  padding-right: 20px;
}
.custv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.custv2-tag i {
  color: var(--ca, #5bc8e8);
  font-size: 0.62rem;
}

/* Divider */
.custv2-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--ca,#5bc8e8), transparent 60%);
  opacity: 0.2;
  margin: 10px 18px;
}

/* Projects block */
.custv2-projects {
  padding: 0 18px 18px;
}

.custv2-proj-title {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--ca, #5bc8e8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.custv2-proj-title i { font-size: 0.6rem; }

.custv2-projects ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.custv2-projects ul li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.45;
  padding-left: 14px;
  position: relative;
  transition: color 0.2s ease;
}
.custv2-projects ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ca, #5bc8e8);
  opacity: 0.7;
}
.custv2-card:hover .custv2-projects ul li {
  color: rgba(255,255,255,0.85);
}

/* ── Industry Stats ── */
.industry-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.industry-stat {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.industry-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(91,200,232,0.3);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .custv2-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .custv2-section { padding: 72px 16px 60px; }
  .custv2-grid { grid-template-columns: 1fr; gap: 16px; }
  .custv2-logo-panel { height: 100px; }
  .custv2-info h4 { font-size: 0.86rem; }
  .custv2-projects { padding: 0 14px 14px; }
  .custv2-info { padding: 12px 14px 5px; }
  .custv2-divider { margin: 8px 14px; }
}

/* ═══════════════════════════════════════════════════════════
   EZYSHARE WHEEL — UPGRADED INTERACTIVE SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* Legend bar */
.ezy-legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; max-width: 800px; margin: 0 auto 40px;
  position: relative; z-index: 2;
}
.ezy-legend-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.6); letter-spacing: 0.04em;
}
.ezy-legend-item i { font-size: 0.55rem; color: var(--lc, #fff); }

/* Explorer layout */
.ezy-explorer {
  display: flex; align-items: center; gap: 48px;
  max-width: 1100px; margin: 0 auto;
}

/* Orbit ring pulse */
.wheel-orbit-ring {
  position: absolute;
  width: calc(100% + 30px); height: calc(100% + 30px);
  top: -15px; left: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
  animation: orbitSpin 40s linear infinite;
  pointer-events: none;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Core (larger) segments */
.wheel-segment.seg-core { transform: scale(1.08) translateX(var(--tx,0)) translateY(var(--ty,0)); }
.wheel-segment.seg-core .seg-inner { width: 78px; height: 78px; border-radius: 50%; }

/* Hover interactions */
.wheel-segment {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s ease !important;
}
.wheel-segment:hover {
  z-index: 10 !important;
  filter: drop-shadow(0 0 14px var(--seg-color, rgba(91,200,232,0.7))) !important;
}
.wheel-segment:hover .seg-inner {
  background: rgba(255,255,255,0.16) !important;
  border-color: var(--seg-color, rgba(91,200,232,0.6)) !important;
  transform: scale(1.18) !important;
}
.wheel-segment:hover .seg-inner i {
  transform: scale(1.2) !important;
}

/* Active segment highlight */
.wheel-segment.seg-active .seg-inner {
  border-width: 2px !important;
  border-color: var(--seg-color, #5bc8e8) !important;
  background: rgba(255,255,255,0.14) !important;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06) !important;
}

/* Center hub reacts */
.wheel-center {
  transition: all 0.4s ease;
}
.wheel-center.center-active {
  box-shadow: 0 0 0 8px rgba(245,166,35,0.15), 0 0 0 20px rgba(245,166,35,0.05) !important;
}

/* ── Feature Panel ── */
.ezy-panel {
  flex: 1; min-width: 300px; max-width: 400px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: center;
}
.ezy-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #f5a623, #5bc8e8, #7de87b);
  border-radius: 24px 24px 0 0;
}

/* Default state */
.ezy-panel-default { text-align: center; }
.ezy-panel-logo { width: 70px; height: 70px; margin: 0 auto 16px; }
.ezy-panel-logo img { width: 100%; height: 100%; object-fit: contain; }
.ezy-panel-default h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.ezy-panel-default p { color: rgba(255,255,255,0.5); font-size: 0.86rem; line-height: 1.6; }
.ezy-panel-cats {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 20px;
}
.ezy-cat-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.72rem; color: rgba(255,255,255,0.6);
}
.ezy-cat-pill i { color: var(--cp, #5bc8e8); font-size: 0.6rem; }

/* Detail state */
.ezy-panel-detail-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 14px;
}
.ezy-panel-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: background 0.4s ease, color 0.4s ease;
}
.ezy-panel-num {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.ezy-panel-detail h3 { color: #fff; font-size: 1.2rem; margin: 0 0 4px; }
.ezy-panel-cat {
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 10px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.ezy-panel-tip {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  margin: 0 0 14px; font-style: italic;
  line-height: 1.5;
}
.ezy-panel-benefits {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.ezy-panel-benefits li {
  font-size: 0.84rem; color: rgba(255,255,255,0.78);
  padding-left: 20px; position: relative; line-height: 1.4;
}
.ezy-panel-benefits li::before {
  content: '✔';
  position: absolute; left: 0;
  color: var(--panel-color, #5bc8e8);
  font-size: 0.75rem; top: 1px;
}
.ezy-panel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 12px;
  background: var(--panel-color, #5bc8e8);
  color: #000; font-weight: 700; font-size: 0.85rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}
.ezy-panel-cta:hover { opacity: 0.85; transform: translateY(-2px); }

/* Fade transition for panel content */
.ezy-panel-detail, .ezy-panel-default {
  animation: panelFadeIn 0.35s ease;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile cards — shown only on small screens */
.ezy-mobile-cards {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
.ezy-mob-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ezy-mob-card:hover { transform: translateY(-3px); border-color: var(--mc, #5bc8e8); }
.ezy-mob-card i { color: var(--mc, #5bc8e8); font-size: 1.1rem; width: 22px; text-align: center; }
.ezy-mob-card span { color: #fff; font-size: 0.82rem; font-weight: 600; }

/* PTNV2 badge with logo */
.ptnv2-badge-link {
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.ptnv2-badge-logo {
  height: 18px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   JOB VACANCY / CAREERS SECTION
   ═══════════════════════════════════════════════════════════ */
.careers-section {
  position: relative;
  background: linear-gradient(135deg, #07101e 0%, #0c1828 60%, #091422 100%);
  padding: 100px 24px 80px;
  overflow: hidden;
}
.careers-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.careers-glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px); opacity: 0.5;
}
.cg1 { width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(91,200,232,0.08), transparent); }
.cg2 { width: 400px; height: 400px; bottom: 0; left: -80px;
  background: radial-gradient(circle, rgba(245,166,35,0.07), transparent); }

.careers-header {
  max-width: 680px; margin: 0 auto 60px;
  text-align: center; position: relative; z-index: 2;
}

/* Job grid */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
  position: relative; z-index: 2;
}

/* Job card */
.job-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: visible; /* allow icon to overflow the top edge */
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,200,232,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(91,200,232,0.1);
}

.job-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--jc, #5bc8e8), transparent);
  position: relative;
  border-radius: 20px 20px 0 0; /* match card corners, clip accent strip only */
  overflow: visible;
}
.job-badge {
  position: absolute; top: 12px; right: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 3px 12px;
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.6); letter-spacing: 0.07em;
}
.job-icon {
  position: absolute; top: -20px; left: 24px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--jc, #5bc8e8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.job-card-body {
  padding: 38px 24px 20px; /* extra top padding so icon clears the accent strip */
  flex: 1;
}
.job-card-body h4 {
  color: #fff; font-size: 1.05rem; font-weight: 700;
  margin: 0 0 6px; line-height: 1.3;
}
.job-location {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  margin: 0 0 12px; display: flex; align-items: center; gap: 6px;
}
.job-location i { font-size: 0.7rem; color: var(--jc, #5bc8e8); }
.job-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.58);
  line-height: 1.6; margin: 0 0 16px;
}
.job-reqs {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.job-reqs li {
  font-size: 0.8rem; color: rgba(255,255,255,0.55);
  padding-left: 18px; position: relative; line-height: 1.4;
}
.job-reqs li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--jc, #5bc8e8); font-size: 0.7rem;
}

.job-card-foot {
  padding: 0 24px 24px;
}
.job-apply-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--jc, #5bc8e8);
  color: var(--jc, #5bc8e8);
  font-weight: 700; font-size: 0.84rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.job-apply-btn:hover {
  background: var(--jc, #5bc8e8);
  color: #000;
  transform: translateY(-2px);
}

.careers-note {
  text-align: center; color: rgba(255,255,255,0.4);
  font-size: 0.85rem; position: relative; z-index: 2;
}
.careers-note i { margin-right: 6px; color: #5bc8e8; }
.careers-note a { color: #5bc8e8; text-decoration: underline; }

/* Apply Modal */
.apply-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 4000; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.apply-overlay.open { opacity: 1; pointer-events: all; }
.apply-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.95);
  z-index: 4001; opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  width: min(600px, 92vw);
  background: linear-gradient(145deg, #0f1e33, #0a1525);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px; overflow: hidden;
}
.apply-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.apply-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.apply-close:hover { background: rgba(255,255,255,0.15); }
.apply-modal-inner { padding: 36px 32px 32px; }
.apply-modal-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.apply-modal-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(91,200,232,0.12);
  border: 1px solid rgba(91,200,232,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #5bc8e8;
}
.apply-modal-sub { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin: 0 0 3px; text-transform: uppercase; letter-spacing: 0.1em; }
.apply-modal-head h3 { color: #fff; font-size: 1.15rem; margin: 0; }
.apply-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.apply-form .form-group { margin-bottom: 14px; }
.apply-form label { display: block; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.apply-form input, .apply-form textarea {
  width: 100%; padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.85rem;
  transition: border-color 0.2s ease;
  font-family: inherit;
  box-sizing: border-box;
}
.apply-form input:focus, .apply-form textarea:focus {
  outline: none; border-color: rgba(91,200,232,0.5);
}
.apply-form textarea { resize: vertical; }
/* File upload field */
.apply-file-hint {
  font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.3);
  margin-left: 4px;
}
.apply-file-label {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px dashed rgba(91,200,232,0.3);
  border-radius: 10px; cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  box-sizing: border-box;
  position: relative;
}
.apply-file-label:hover,
.apply-file-label.has-file {
  border-color: rgba(91,200,232,0.65);
  background: rgba(91,200,232,0.07);
}
/* hide native input */
.apply-file-label input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.apply-file-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px;
  background: rgba(91,200,232,0.12);
  border: 1px solid rgba(91,200,232,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #5bc8e8; font-size: 0.85rem;
  transition: background 0.2s ease;
}
.apply-file-label.has-file .apply-file-icon {
  background: rgba(125,232,123,0.15);
  border-color: rgba(125,232,123,0.3);
  color: #7de87b;
}
.apply-file-text {
  flex: 1; font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  pointer-events: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color 0.2s ease;
  /* text on the left, icon+Browse grouped on the right */
  margin-right: 2px;
}
.apply-file-label.has-file .apply-file-text {
  color: rgba(255,255,255,0.75);
}
/* Icon + Browse always inline side by side */
.apply-file-actions {
  display: inline-flex; align-items: center;
  flex-shrink: 0; gap: 6px;
}
.apply-file-btn {
  flex-shrink: 0; padding: 5px 13px;
  background: rgba(91,200,232,0.12);
  border: 1px solid rgba(91,200,232,0.25);
  border-radius: 6px; color: #5bc8e8;
  font-size: 0.72rem; font-weight: 700;
  pointer-events: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.apply-file-chosen {
  margin-top: 6px; font-size: 0.74rem;
  color: #7de87b; display: none;
  align-items: center; gap: 6px;
}
.apply-file-chosen.show { display: flex; }

.apply-submit-btn {
  width: 100%; padding: 13px;
  background: linear-gradient(90deg, #5bc8e8, #3aacc8);
  border: none; border-radius: 12px;
  color: #000; font-weight: 800; font-size: 0.9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: 6px;
}
.apply-submit-btn:hover { opacity: 0.88; transform: translateY(-2px); }

@media (max-width: 768px) {
  .job-grid { grid-template-columns: 1fr; }
  .apply-form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   AI JUNIE CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════ */
.junie-widget {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9000;
  display: flex; flex-direction: column; align-items: center; gap: 0;
  /* tooltip sits below button; panel floats above via absolute position */
  /* needs position relative so child .junie-panel can anchor to it */
  /* Note: position:fixed already establishes containing block */
}

/* Toggle button */
.junie-toggle {
  position: relative; width: 70px; height: 70px;
  border-radius: 50%; border: none; cursor: pointer;
  background: transparent;
  box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  transition: transform 0.3s ease;
}
.junie-toggle:hover { transform: scale(1.1); }

/* Pulse rings (heartbeat) */
.junie-pulse-ring {
  position: absolute; inset: 4px;
  border-radius: 50%;
  border: 2px solid rgba(91,200,232,0.45);
  animation: juniePulse 2.4s ease-out infinite;
  pointer-events: none;
}
.junie-pulse-ring-2 {
  inset: -4px;
  border-color: rgba(125,232,123,0.2);
  animation-delay: 0.9s;
}
@keyframes juniePulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  60%  { transform: scale(1.15); opacity: 0.2; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Avatar wrapper — floats and holds blink SVG */
.junie-avatar-wrap {
  position: relative;
  width: 70px; height: 70px;
  animation: junieFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 18px rgba(91,200,232,0.5));
  z-index: 1;
}
.junie-avatar {
  width: 70px; height: 70px; object-fit: contain;
  border-radius: 0; display: block;
}
@keyframes junieFloat {
  0%   { transform: translateY(0px);  }
  50%  { transform: translateY(-7px); }
  100% { transform: translateY(0px);  }
}

/* Blink SVG overlay — sits exactly over the eye area */
.junie-blink {
  position: absolute;
  /* tune these to sit right over the pupils in the image */
  top: 40%; left: 14%;
  width: 72%; height: 24%;
  pointer-events: none;
  overflow: visible;
}
/* Lids start fully hidden (ry=0), blink closes then reopens */
.junie-lid {
  transform-origin: center;
  transform-box: fill-box;
  animation: junieBlink 4s ease-in-out infinite;
}
.junie-lid-r { animation-delay: 0.04s; } /* tiny offset = natural feel */
@keyframes junieBlink {
  0%,  42%          { ry: 0; opacity: 0; }   /* eyes open — lid hidden     */
  45%               { ry: 9; opacity: 1; }   /* lid snaps shut             */
  50%               { ry: 9; opacity: 1; }   /* hold closed                */
  55%               { ry: 0; opacity: 0; }   /* lid opens back             */
  57%, 100%         { ry: 0; opacity: 0; }   /* stay open until next blink */
}
.junie-badge {
  position: absolute; top: -2px; right: -2px;
  background: linear-gradient(135deg, #f5a623, #e8841a);
  color: #000; font-size: 0.5rem; font-weight: 900;
  padding: 2px 5px; border-radius: 8px;
  letter-spacing: 0.06em; z-index: 2;
}
.junie-tooltip {
  margin-top: 8px;
  background: rgba(10,20,38,0.95);
  border: 1px solid rgba(91,200,232,0.25);
  color: #fff; font-size: 0.74rem; font-weight: 600;
  padding: 5px 13px; border-radius: 20px;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
  transform: translateY(-4px);
  text-align: center;
}
.junie-widget:hover .junie-tooltip {
  opacity: 1;
  transform: translateY(0);
}
/* Hide tooltip when chat panel is open */
.junie-widget.junie-open .junie-tooltip {
  opacity: 0 !important;
  pointer-events: none;
}

/* Chat panel — floats above the toggle button */
.junie-panel {
  position: absolute;
  bottom: calc(100% + 14px); /* sits above the entire widget stack */
  right: 0;
  width: 340px;
  background: linear-gradient(160deg, #0d1e38, #091525);
  border: 1px solid rgba(91,200,232,0.2);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: 500px;
  transform: scale(0.9) translateY(20px);
  transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.junie-panel.open {
  opacity: 1; pointer-events: all;
  transform: scale(1) translateY(0);
}

/* Panel header */
.junie-panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px;
  background: rgba(91,200,232,0.08);
  border-bottom: 1px solid rgba(91,200,232,0.15);
}
.junie-head-left { display: flex; align-items: center; gap: 10px; }
.junie-head-avatar { position: relative; }
.junie-head-avatar img { width: 42px; height: 42px; border-radius: 0; object-fit: contain; background: transparent; }
.junie-online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; border: 2px solid #0d1e38;
  animation: junieBlink 2s ease infinite;
}
@keyframes junieBlink {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.junie-panel-head strong { color: #fff; font-size: 0.92rem; display: block; line-height: 1; }
.junie-panel-head p { color: rgba(91,200,232,0.7); font-size: 0.7rem; margin: 3px 0 0; }
.junie-close-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: none;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.junie-close-btn:hover { background: rgba(255,255,255,0.14); color: #fff; }

/* Messages area */
.junie-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  scrollbar-width: thin; scrollbar-color: rgba(91,200,232,0.2) transparent;
}
.junie-msg { display: flex; gap: 8px; align-items: flex-end; }
.junie-msg-bot { flex-direction: row; }
.junie-msg-user { flex-direction: row-reverse; }
.junie-msg-avatar img {
  width: 34px; height: 34px; border-radius: 0; object-fit: contain; flex-shrink: 0; background: transparent;
}
.junie-msg-bubble {
  max-width: 80%; padding: 10px 14px;
  border-radius: 16px; font-size: 0.82rem; line-height: 1.55;
}
.junie-msg-bot .junie-msg-bubble {
  background: rgba(91,200,232,0.1);
  border: 1px solid rgba(91,200,232,0.15);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
}
.junie-msg-user .junie-msg-bubble {
  background: linear-gradient(135deg, #5bc8e8, #3aacc8);
  color: #000; font-weight: 600;
  border-bottom-right-radius: 4px;
}

/* Quick replies */
.junie-quick-replies {
  padding: 8px 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.junie-quick-replies button {
  padding: 5px 12px; border-radius: 16px;
  background: rgba(91,200,232,0.08);
  border: 1px solid rgba(91,200,232,0.2);
  color: rgba(91,200,232,0.9); font-size: 0.73rem; font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.junie-quick-replies button:hover {
  background: rgba(91,200,232,0.18);
}

/* Input row */
.junie-input-row {
  display: flex; gap: 8px; padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.junie-input-row input {
  flex: 1; padding: 9px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.83rem; font-family: inherit;
}
.junie-input-row input:focus { outline: none; border-color: rgba(91,200,232,0.4); }
.junie-input-row input::placeholder { color: rgba(255,255,255,0.3); }
.junie-send-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #5bc8e8, #3aacc8);
  border: none; color: #000; font-size: 0.85rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.junie-send-btn:hover { opacity: 0.85; transform: scale(1.05); }

/* Typing indicator */
.junie-typing .junie-msg-bubble {
  display: flex; align-items: center; gap: 4px; padding: 12px 16px;
}
.junie-typing .junie-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(91,200,232,0.7);
  animation: junieTyping 1.2s ease infinite;
}
.junie-typing .junie-dot:nth-child(2) { animation-delay: 0.2s; }
.junie-typing .junie-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes junieTyping {
  0%,80%,100% { transform: translateY(0); opacity: 0.4; }
  40% { transform: translateY(-6px); opacity: 1; }
}

/* Header logo text size adjustment */
.logo-text { font-size: 0.82rem !important; }

/* Wheel responsive — hide wheel, show cards on mobile */
@media (max-width: 900px) {
  .ezy-explorer { flex-direction: column; gap: 32px; }
  .ezy-panel { max-width: 100%; min-width: unset; width: 100%; }
}
@media (max-width: 680px) {
  .ezy-explorer { display: none; }
  .ezy-mobile-cards { display: grid; }
  .ezy-legend { display: none; }
  .junie-panel { width: 300px; }
  .junie-widget { bottom: 18px; right: 18px; }
  .back-to-top { bottom: 145px; right: 22px; }
}
