:root {
  --primary: #0f766e;
  --primary-2: #14b8a6;
  --secondary: #2563eb;
  --accent: #f97316;
  --purple: #7c3aed;
  --dark: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --card: #fff;
  --line: #e2e8f0;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --radius: 28px;
  --grad: linear-gradient(135deg, #0f766e, #2563eb 58%, #7c3aed);
  --grad-soft: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.12),
    rgba(37, 99, 235, 0.1),
    rgba(249, 115, 22, 0.1)
  );
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    Segoe UI,
    Tahoma,
    sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(37, 99, 235, 0.12), transparent 28%),
    radial-gradient(
      circle at 90% 30%,
      rgba(20, 184, 166, 0.12),
      transparent 26%
    ),
    linear-gradient(180deg, #fff 0%, #f8fafc 45%, #eef6ff 100%);
  background-attachment: fixed;
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
}
.site-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #eaf2ff;
}
::-webkit-scrollbar-thumb {
  background: var(--grad);
  border-radius: 999px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  color: var(--primary);
  font-weight: 900;
  font-size: 0.88rem;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.08);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 95px 0 70px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(20, 184, 166, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(37, 99, 235, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 70% 82%,
      rgba(249, 115, 22, 0.16),
      transparent 25%
    );
  animation: bgMove 10s ease-in-out infinite alternate;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(20, 184, 166, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(37, 99, 235, 0.14),
      transparent 25%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(124, 58, 237, 0.12),
      transparent 25%
    );
  animation: floatingBg 14s ease-in-out infinite alternate;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 118, 110, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  animation: gridMove 18s linear infinite;
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.8;
  animation: float 7s ease-in-out infinite;
}
.orb.one {
  width: 120px;
  height: 120px;
  left: 8%;
  top: 24%;
  background: rgba(20, 184, 166, 0.16);
}
.orb.two {
  width: 90px;
  height: 90px;
  right: 11%;
  top: 28%;
  background: rgba(37, 99, 235, 0.14);
  animation-delay: 1.2s;
}
.orb.three {
  width: 160px;
  height: 160px;
  right: 20%;
  bottom: 6%;
  background: rgba(249, 115, 22, 0.12);
  animation-delay: 2s;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  z-index: 3;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 5.8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 18px 0 20px;
  max-width: 720px;
  text-shadow: 0 6px 25px rgba(37, 99, 235, 0.12);
  animation: titleFloat 4s ease-in-out infinite;
}
.gradient-text {
  background: var(--grad);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientMove 8s ease infinite;
}
.hero-copy p {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 950;
  border: 1px solid transparent;
  transition: 0.35s;
  cursor: pointer;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transition: 0.8s;
}
.btn:hover::before {
  left: 120%;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow:
    0 18px 40px rgba(37, 99, 235, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 28px 60px rgba(37, 99, 235, 0.32);
}
.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.btn-light:hover {
  transform: translateY(-4px);
  border-color: var(--primary-2);
  color: var(--primary);
}
.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.trust {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 13px 16px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: 0.45s;
}
.trust:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.16);
}
.trust strong {
  display: block;
  font-size: 1.35rem;
  color: var(--dark);
}
.trust span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 750;
}

.hero-panel {
  position: relative;
  perspective: 1400px;
}
.elite-showcase {
  position: relative;
  min-height: 620px;
  border-radius: 38px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(239, 246, 255, 0.86)
  );
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow:
    0 34px 90px rgba(15, 23, 42, 0.18),
    0 0 0 12px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  isolation: isolate;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: 0.5s;
}
.elite-showcase:hover {
  transform: rotateY(0) rotateX(0) translateY(-6px);
  box-shadow:
    0 44px 110px rgba(15, 23, 42, 0.22),
    0 0 0 12px rgba(255, 255, 255, 0.72);
}
.elite-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(20, 184, 166, 0.08),
    transparent 34%,
    rgba(37, 99, 235, 0.1) 70%,
    rgba(124, 58, 237, 0.08)
  );
  z-index: -2;
}
.elite-showcase::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.24), transparent 66%);
  z-index: -1;
  animation: elitePulse 7s ease-in-out infinite;
}
.elite-glow {
  position: absolute;
  left: -140px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.22),
    transparent 68%
  );
  animation: eliteFloat 9s ease-in-out infinite;
}
.elite-topbar {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}
.elite-brand-dot {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.2);
  flex: none;
}
.elite-brand-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.elite-topbar span {
  display: block;
  font-size: 1rem;
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.elite-topbar small {
  display: block;
  color: #64748b;
  font-weight: 750;
  margin-top: 1px;
}
.elite-status {
  margin-left: auto;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 950;
  font-size: 0.78rem;
}
.elite-status i {
  font-size: 0.55rem;
  animation: blink 1.2s ease-in-out infinite;
}
.elite-stage {
  position: relative;
  min-height: 420px;
}
.elite-showcase .pro-slide {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  opacity: 0;
  transform: translateX(80px) scale(0.94) rotateY(-10deg);
  filter: blur(8px);
  pointer-events: none;
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.75s;
}
.elite-showcase .pro-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  filter: blur(0);
  pointer-events: auto;
}
.elite-showcase .pro-slide.leaving {
  opacity: 0;
  transform: translateX(-70px) scale(0.94) rotateY(10deg);
  filter: blur(8px);
}
.elite-visual {
  height: 320px;
  border-radius: 34px;
  background: linear-gradient(145deg, #fff, #eff6ff);
  border: 1px solid rgba(203, 213, 225, 0.85);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 28px 60px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}
.elite-visual::before {
  content: "";
  position: absolute;
  inset: -70px;
  background: conic-gradient(
    from 120deg,
    transparent,
    rgba(20, 184, 166, 0.18),
    transparent,
    rgba(37, 99, 235, 0.18),
    transparent
  );
  animation: spin 12s linear infinite;
}
.elite-copy {
  position: relative;
  z-index: 2;
}
.elite-copy .slide-label {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  font-weight: 950;
  font-size: 0.78rem;
  margin-bottom: 16px;
}
.elite-copy h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
  color: #0f172a;
}
.elite-copy p {
  font-size: 1.02rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 18px;
}
.elite-copy .btn {
  margin-top: 20px;
  padding: 13px 18px;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.tech-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
  font-weight: 850;
  font-size: 0.82rem;
}
.browser-window {
  position: absolute;
  inset: 32px 26px;
  background: white;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  box-shadow: 0 26px 56px rgba(37, 99, 235, 0.14);
  z-index: 2;
  overflow: hidden;
}
.browser-head {
  height: 42px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
}
.browser-head span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ef4444;
}
.browser-head span:nth-child(2) {
  background: #f59e0b;
}
.browser-head span:nth-child(3) {
  background: #22c55e;
}
.browser-head b {
  margin-left: 8px;
  color: #64748b;
  font-size: 0.7rem;
}
.browser-body {
  padding: 20px;
}
.hero-skeleton {
  height: 72px;
  border-radius: 18px;
  background: var(--grad);
  margin-bottom: 18px;
}
.line-row,
.card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.line-row i {
  height: 12px;
  border-radius: 20px;
  background: #dbeafe;
}
.card-row {
  gap: 12px;
  margin-top: 20px;
}
.card-row em {
  height: 74px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}
.metric-card {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  font-weight: 950;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: eliteFloat 5s ease-in-out infinite;
}
.metric-card.top {
  right: 18px;
  top: 24px;
}
.metric-card.bottom {
  left: 22px;
  bottom: 22px;
  animation-delay: 1s;
}
.metric-card strong {
  font-size: 1.15rem;
  color: #0f766e;
}
.metric-card span {
  font-size: 0.82rem;
  color: #64748b;
}
.metric-card i {
  color: #0f766e;
}
.phone-device {
  position: absolute;
  z-index: 3;
  left: 42px;
  top: 38px;
  width: 132px;
  height: 245px;
  border-radius: 34px;
  background: #0f172a;
  border: 8px solid #1e293b;
  box-shadow: 0 32px 62px rgba(15, 23, 42, 0.26);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  color: white;
}
.phone-notch {
  position: absolute;
  top: 11px;
  width: 46px;
  height: 6px;
  border-radius: 20px;
  background: #334155;
}
.phone-device i {
  font-size: 34px;
  color: #14b8a6;
  margin-bottom: 18px;
}
.phone-device b {
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.phone-device span {
  height: 10px;
  width: 100%;
  border-radius: 20px;
  background: #334155;
  margin: 7px 0;
}
.tablet-device {
  position: absolute;
  z-index: 2;
  right: 26px;
  top: 66px;
  width: 260px;
  height: 194px;
  background: white;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  box-shadow: 0 30px 58px rgba(37, 99, 235, 0.13);
  padding: 24px;
}
.dash-bars i {
  display: block;
  height: 15px;
  border-radius: 20px;
  background: #dbeafe;
  margin-bottom: 12px;
}
.dash-bars i:nth-child(2) {
  width: 78%;
}
.dash-bars i:nth-child(3) {
  width: 54%;
}
.dash-chart {
  height: 84px;
  display: flex;
  align-items: end;
  gap: 13px;
  margin-top: 10px;
}
.dash-chart b {
  flex: 1;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, #14b8a6, #2563eb);
}
.dash-chart b:nth-child(1) {
  height: 48%;
}
.dash-chart b:nth-child(2) {
  height: 82%;
}
.dash-chart b:nth-child(3) {
  height: 62%;
}
.dash-chart b:nth-child(4) {
  height: 95%;
}
.secure-orbit {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: white;
  font-size: 52px;
  box-shadow:
    0 0 0 24px rgba(20, 184, 166, 0.12),
    0 0 0 52px rgba(37, 99, 235, 0.08),
    0 28px 60px rgba(37, 99, 235, 0.2);
}
.secure-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.16);
  animation: orbit 5s linear infinite;
}
.secure-orbit span:nth-child(2) {
  animation-delay: 1.6s;
}
.secure-orbit span:nth-child(3) {
  animation-delay: 3.2s;
}
.audit-panel {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 24px;
  width: 178px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.audit-panel b {
  display: block;
  margin-bottom: 12px;
}
.audit-panel p {
  height: 12px;
  border-radius: 20px;
  background: #dbeafe;
  margin: 10px 0;
}
.academy-card {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  top: 42px;
  height: 132px;
  border-radius: 28px;
  background: var(--grad);
  box-shadow: 0 30px 62px rgba(37, 99, 235, 0.22);
  color: white;
  padding: 26px;
}
.academy-card i {
  font-size: 34px;
  margin-right: 14px;
}
.academy-card strong {
  font-size: 1.35rem;
}
.academy-card span {
  display: block;
  margin-top: 10px;
  opacity: 0.88;
}
.student-stack {
  position: absolute;
  z-index: 4;
  left: 42px;
  bottom: 42px;
  display: flex;
}
.student-stack i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #dbeafe);
  border: 3px solid #fff;
  margin-left: -8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.elite-bottom {
  height: 88px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}
.showcase-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.showcase-tab {
  border: 1px solid #dbeafe;
  background: white;
  color: #334155;
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 950;
  font-size: 0.78rem;
  cursor: pointer;
  transition: 0.3s;
}
.showcase-tab.active,
.showcase-tab:hover {
  background: linear-gradient(135deg, #0f766e, #2563eb);
  color: white;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}
.showcase-controls {
  display: flex;
  gap: 10px;
  flex: none;
}
.showcase-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid #dbeafe;
  border-radius: 50%;
  background: white;
  color: #0f172a;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}
.showcase-controls button:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-2px);
}
.progress-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: #e2e8f0;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0f766e, #2563eb, #7c3aed);
  transition: width 0.35s linear;
}

section {
  position: relative;
  padding: 94px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  margin: 12px 0;
}
.section-head p {
  color: var(--muted);
  max-width: 720px;
  margin: auto;
}
.grid {
  display: grid;
  gap: 24px;
}
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}
.partners-strip {
  padding: 26px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  border-block: 1px solid rgba(226, 232, 240, 0.8);
}
.strip-inner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.strip-inner span {
  color: #64748b;
  font-weight: 800;
}
.strip-inner strong {
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.1),
    transparent 42%,
    rgba(37, 99, 235, 0.08)
  );
  opacity: 0;
  transition: 0.35s;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.28),
    transparent
  );
  transform: translateX(-120%);
  transition: 1s;
}
.card:hover {
  transform: translateY(-14px) rotateX(3deg);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
  border-color: rgba(20, 184, 166, 0.35);
}
.card:hover::before {
  opacity: 1;
}
.card:hover::after {
  transform: translateX(120%);
}
.card > * {
  position: relative;
}
.icon {
  position: relative;
  overflow: hidden;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 20px;
}
.icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: spin 4s linear infinite;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.card p {
  color: var(--muted);
}
.feature-list {
  list-style: none;
  margin-top: 18px;
}
.feature-list li {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 8px 0;
  color: #475569;
  font-weight: 700;
}
.feature-list i {
  color: var(--primary);
}
.bento-section {
  background: linear-gradient(135deg, #f8fbff, #f0fdfa);
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}
.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-card.wide {
  grid-column: span 2;
}
.bento-card i {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 18px;
}
.bento-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.bento-card p {
  color: #64748b;
}
.bento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(37, 99, 235, 0.14);
}
.stripe {
  background: linear-gradient(135deg, #eff6ff, #f0fdfa);
}
.course-grid {
  grid-template-columns: repeat(4, 1fr);
}
.course-card {
  padding: 24px;
}
.course-card .meta {
  display: flex;
  justify-content: space-between;
  margin: 14px 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.85rem;
}
.mini-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.mini-btn {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-weight: 900;
  font-size: 0.82rem;
  transition: 0.3s;
}
.mini-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
  position: relative;
}
.step-num {
  font-size: 2.5rem;
  font-weight: 950;
  color: #dbeafe;
}
.step h3 {
  margin: -8px 0 8px;
}
.industries {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.industry-pill {
  position: relative;
  overflow: hidden;
  padding: 13px 18px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  font-weight: 850;
  transition: 0.3s;
}
.industry-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.7s;
}
.industry-pill:hover::before {
  transform: translateX(100%);
}
.industry-pill:hover {
  background: var(--grad);
  color: white;
  transform: translateY(-4px);
}
.cta-band {
  padding: 70px 0;
}
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88),
    rgba(239, 246, 255, 0.76)
  );
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.cta-card h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  margin: 12px 0;
}
.cta-card p {
  color: #64748b;
  max-width: 650px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-item {
  display: flex;
  gap: 14px;
  margin: 20px 0;
  color: #475569;
}
.contact-item i {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--grad-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex: none;
}
form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  position: relative;
}
.field.full {
  grid-column: 1/-1;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(203, 213, 225, 0.75);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  font: inherit;
  outline: 0;
  transition: 0.35s;
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--primary-2);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 6px rgba(37, 99, 235, 0.1),
    0 12px 30px rgba(37, 99, 235, 0.08);
  background: white;
}

/* Footer styles moved to footer.css */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: 0.75s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.reveal.show,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.15s;
}
@keyframes bgMove {
  to {
    transform: translate3d(2%, 2%, 0) scale(1.03);
  }
}
@keyframes floatingBg {
  to {
    transform: translateY(-20px) scale(1.05);
  }
}
@keyframes gridMove {
  to {
    background-position: 52px 52px;
  }
}
@keyframes float {
  50% {
    transform: translateY(-18px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes titleFloat {
  50% {
    transform: translateY(-4px);
  }
}
@keyframes elitePulse {
  50% {
    transform: scale(1.18);
    opacity: 0.75;
  }
}
@keyframes eliteFloat {
  50% {
    transform: translateY(-14px);
  }
}
@keyframes blink {
  50% {
    opacity: 0.25;
  }
}
@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(92px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(92px) rotate(-360deg);
  }
}
@keyframes footerGlow {
  50% {
    transform: scale(1.15) translateY(-18px);
  }
}

@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .elite-showcase {
    transform: none;
    max-width: 760px;
    margin: auto;
  }
  .elite-showcase:hover {
    transform: translateY(-4px);
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 120px;
  }
  .services-grid,
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .elite-showcase {
    min-height: 780px;
    border-radius: 26px;
  }
  .elite-topbar {
    height: auto;
    align-items: flex-start;
  }
  .elite-status {
    display: none;
  }
  .elite-stage {
    min-height: 590px;
  }
  .elite-showcase .pro-slide {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .elite-visual {
    height: 300px;
  }
  .elite-copy h2 {
    font-size: 1.75rem;
  }
  .elite-bottom {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .showcase-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .showcase-controls {
    justify-content: flex-end;
  }
  .tablet-device {
    width: 210px;
    right: 16px;
  }
  .phone-device {
    left: 18px;
  }
  .academy-card {
    left: 18px;
    right: 18px;
  }
}
@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.55rem;
  }
  .hero-actions .btn,
  .elite-copy .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .services-grid,
  .course-grid,
  .process,
  .bento-grid {
    grid-template-columns: 1fr;
  }
  form {
    grid-template-columns: 1fr;
  }
  section {
    padding: 70px 0;
  }
}
@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 2.35rem;
  }
  .elite-showcase {
    min-height: 835px;
  }
  .elite-stage {
    min-height: 640px;
  }
  .elite-visual {
    height: 280px;
  }
  .showcase-tabs {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
/* HERO VISIBILITY FIX */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.hero {
  position: relative !important;
  min-height: 100vh !important;
  padding: 120px 0 70px !important;
  overflow: hidden !important;
}

.hero-wrap {
  position: relative !important;
  z-index: 2 !important;
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr !important;
  gap: 64px !important;
  align-items: center !important;
  transform: none !important;
}

/* ======================================================
   WEBEDGE INDEX PAGE - MOBILE/TABLET RESPONSIVE FIX
   Paste this after style.css, navbar.css and footer.css
====================================================== */

:root {
  --wedx-primary: #0f766e;
  --wedx-teal: #14b8a6;
  --wedx-blue: #2563eb;
  --wedx-purple: #7c3aed;
  --wedx-dark: #0f172a;
  --wedx-muted: #64748b;
  --wedx-line: #e2e8f0;
  --wedx-grad: linear-gradient(135deg, #0f766e, #2563eb 58%, #7c3aed);
}

/* Universal mobile safety */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

img,
video,
iframe {
  max-width: 100%;
}

.container {
  width: min(1180px, 92%) !important;
  max-width: 100% !important;
}

/* Fix reveal issue if JS fails */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Professional smooth page spacing */
section {
  scroll-margin-top: 96px;
}

/* Hero responsive improvement */
.hero {
  min-height: auto !important;
  padding: 120px 0 72px !important;
}

.hero-wrap {
  display: grid !important;
  grid-template-columns: 0.92fr 1.08fr !important;
  gap: clamp(28px, 4vw, 64px) !important;
  align-items: center !important;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 5.5vw, 5.5rem) !important;
  line-height: 0.98 !important;
}

.hero-copy p {
  font-size: clamp(1rem, 1.5vw, 1.14rem) !important;
}

.hero-actions {
  align-items: center;
}

.trust-row {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.trust {
  min-width: 0;
}

/* Hero carousel safe sizing */
.elite-showcase {
  width: 100% !important;
  min-height: 620px !important;
}

.elite-stage {
  min-height: 420px !important;
}

.elite-showcase .pro-slide {
  grid-template-columns: 1.05fr 0.95fr !important;
}

.elite-visual {
  min-width: 0;
}

.browser-window {
  inset: 32px 26px !important;
}

/* Cards responsive base */
.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.course-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.process {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.bento-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.card,
.bento-card,
.step,
.contact-card,
.cta-card {
  max-width: 100%;
}

/* Contact form safe */
.contact-wrap {
  grid-template-columns: 0.92fr 1.08fr !important;
}

.contact-card form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.field.full {
  grid-column: 1 / -1 !important;
}

/* Premium hover only on devices that support hover */
@media (hover: hover) {
  .card:hover,
  .bento-card:hover,
  .step:hover,
  .trust:hover {
    will-change: transform;
  }
}

/* =========================
   Laptop / Small Desktop
========================= */
@media (max-width: 1200px) {
  .hero-wrap {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .hero-copy {
    max-width: 900px;
    margin: auto;
  }

  .hero-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-panel {
    width: min(820px, 100%);
    margin: auto;
  }

  .elite-showcase {
    transform: none !important;
  }

  .elite-showcase:hover {
    transform: translateY(-4px) !important;
  }
}

/* =========================
   Tablet
========================= */
@media (max-width: 980px) {
  .hero {
    padding: 112px 0 62px !important;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 8vw, 4.6rem) !important;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid,
  .course-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 2 !important;
  }

  .contact-wrap {
    grid-template-columns: 1fr !important;
  }

  .cta-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* =========================
   Mobile Hero Carousel
========================= */
@media (max-width: 760px) {
  body {
    background-attachment: scroll !important;
  }

  .hero {
    padding: 100px 0 52px !important;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem) !important;
    letter-spacing: -0.06em !important;
  }

  .hero-copy p {
    font-size: 1rem !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn,
  .elite-copy .btn,
  .cta-card .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .trust {
    padding: 12px !important;
  }

  .trust strong {
    font-size: 1.15rem !important;
  }

  .trust span {
    font-size: 0.76rem !important;
  }

  .elite-showcase {
    min-height: 820px !important;
    border-radius: 26px !important;
    box-shadow: 0 22px 58px rgba(15, 23, 42, 0.14) !important;
  }

  .elite-topbar {
    height: auto !important;
    padding: 16px !important;
    align-items: flex-start !important;
  }

  .elite-status {
    display: none !important;
  }

  .elite-brand-dot {
    width: 44px !important;
    height: 44px !important;
  }

  .elite-topbar span {
    font-size: 0.94rem !important;
  }

  .elite-topbar small {
    font-size: 0.74rem !important;
  }

  .elite-stage {
    min-height: 640px !important;
  }

  .elite-showcase .pro-slide {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 18px !important;
    align-content: start !important;
  }

  .elite-visual {
    height: 285px !important;
    border-radius: 26px !important;
  }

  .elite-copy h2 {
    font-size: 1.62rem !important;
    letter-spacing: -0.04em !important;
  }

  .elite-copy p {
    font-size: 0.95rem !important;
  }

  .tech-tags {
    gap: 8px !important;
  }

  .tech-tags span {
    font-size: 0.74rem !important;
    padding: 7px 10px !important;
  }

  .elite-bottom {
    height: auto !important;
    padding: 16px !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .showcase-tabs {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .showcase-tab {
    text-align: center !important;
    padding: 10px !important;
  }

  .showcase-controls {
    justify-content: flex-end !important;
  }

  .browser-window {
    inset: 22px 16px !important;
  }

  .tablet-device {
    width: 210px !important;
    right: 12px !important;
    top: 72px !important;
  }

  .phone-device {
    width: 112px !important;
    height: 220px !important;
    left: 14px !important;
    top: 38px !important;
  }

  .metric-card {
    padding: 10px 12px !important;
    border-radius: 16px !important;
  }

  .metric-card.top {
    right: 10px !important;
    top: 12px !important;
  }

  .metric-card.bottom {
    left: 12px !important;
    bottom: 12px !important;
  }

  .academy-card {
    left: 16px !important;
    right: 16px !important;
    top: 36px !important;
    height: auto !important;
    min-height: 120px !important;
  }
}

/* =========================
   Mobile Cards / Sections
========================= */
@media (max-width: 640px) {
  section {
    padding: 64px 0 !important;
  }

  .section-head {
    text-align: left !important;
    margin-bottom: 30px !important;
  }

  .section-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem) !important;
    letter-spacing: -0.045em !important;
  }

  .section-head p {
    margin: 0 !important;
  }

  .partners-strip {
    padding: 20px 0 !important;
  }

  .strip-inner {
    justify-content: flex-start !important;
    gap: 10px !important;
  }

  .strip-inner strong {
    padding: 9px 12px !important;
    font-size: 0.82rem !important;
  }

  .services-grid,
  .course-grid,
  .process,
  .bento-grid {
    grid-template-columns: 1fr !important;
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .card,
  .bento-card,
  .step,
  .contact-card,
  .cta-card {
    border-radius: 22px !important;
    padding: 22px !important;
  }

  .course-card .meta {
    flex-direction: column !important;
    gap: 6px !important;
  }

  .mini-btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
  }

  .mini-btn {
    text-align: center !important;
  }

  .process {
    gap: 16px !important;
  }

  .industries {
    justify-content: flex-start !important;
  }

  .industry-pill {
    padding: 11px 13px !important;
    font-size: 0.84rem !important;
  }

  .cta-card {
    gap: 18px !important;
  }

  .cta-card h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }

  .contact-card form {
    grid-template-columns: 1fr !important;
  }

  .field,
  .field.full {
    grid-column: auto !important;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 15px !important;
    border-radius: 14px !important;
    font-size: 0.95rem !important;
  }

  .contact-item {
    align-items: flex-start !important;
  }

  .contact-item i {
    width: 42px !important;
    height: 42px !important;
  }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 430px) {
  .container {
    width: min(100% - 28px, 1180px) !important;
  }

  .hero-copy h1 {
    font-size: 2.15rem !important;
  }

  .pill {
    font-size: 0.76rem !important;
    padding: 8px 12px !important;
  }

  .trust-row {
    grid-template-columns: 1fr !important;
  }

  .elite-showcase {
    min-height: 875px !important;
  }

  .elite-stage {
    min-height: 690px !important;
  }

  .elite-visual {
    height: 265px !important;
  }

  .showcase-tabs {
    grid-template-columns: 1fr !important;
  }

  .tablet-device {
    display: none !important;
  }

  .phone-device {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .browser-body {
    padding: 14px !important;
  }

  .hero-skeleton {
    height: 58px !important;
  }

  .card-row em {
    height: 58px !important;
  }
}

/* =========================
   Landscape Mobile
========================= */
@media (max-height: 520px) and (orientation: landscape) {
  .hero {
    padding-top: 90px !important;
  }

  .elite-showcase {
    min-height: 720px !important;
  }
}

/* =========================
   Large TV Screens
========================= */
@media (min-width: 1600px) {
  .container {
    width: min(1380px, 88%) !important;
  }

  .hero-copy h1 {
    font-size: 6.2rem !important;
  }

  .hero-copy p {
    font-size: 1.25rem !important;
  }

  .elite-showcase {
    min-height: 680px !important;
  }
}
