:root {
  --bg: #04080f;
  --bg2: #070d18;
  --card: #0d1829;
  --navy: #08194d;
  --blue: #1a7fd4;
  --text: #ddeeff;
  --surface: #0b1425;
  --blue-deep: #0d3a8c;
  --text-faint: #3a5570;
  --text-muted: #6b8aaa;
  --blue-bright: #2e9cf5;
  --border: rgba(26, 127, 212, 0.15);
  --border2: rgba(46, 156, 245, 0.28);
  --ff-head: "Nunito Sans", sans-serif;
  --ff-body: "Plus Jakarta Sans", sans-serif;
}

/* ── BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
  cursor: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
/* ── CURSOR ── */
#cur {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-bright);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}
#cur-r {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

/* ── NAVBAR ── */
.te-nav {
  background: rgba(4, 8, 15, 0.88) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: padding 0.3s;
}
.te-nav .navbar-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(92%) sepia(93%) saturate(0%)
    hue-rotate(202deg) brightness(106%) contrast(106%);
}
.te-nav .navbar-brand span {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.te-nav .navbar-brand span em {
  color: var(--blue-bright);
  font-style: normal;
}
.te-nav .nav-link {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted) !important;
  transition: color 0.2s;
  padding: 0.4rem 0.9rem !important;
}
.te-nav .nav-link:hover {
  color: var(--blue-bright) !important;
}
.navbar-toggler {
  border-color: var(--border2);
}
.navbar-toggler-icon {
  filter: invert(1);
}
.btn-nav-cta {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  border: 1px solid var(--border2);
  transition: all 0.25s;
  box-shadow: 0 0 20px rgba(26, 127, 212, 0.25);
  text-decoration: none;
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(26, 127, 212, 0.5);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
.hg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(26, 127, 212, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(26, 127, 212, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(
    ellipse 80% 90% at 50% 0%,
    black 30%,
    transparent 100%
  );
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.o1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 58, 140, 0.55), transparent 70%);
  top: -150px;
  left: -100px;
}
.o2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(26, 127, 212, 0.22),
    transparent 70%
  );
  top: 80px;
  right: -80px;
}
.o3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 156, 245, 0.1), transparent 70%);
  bottom: 0;
  left: 40%;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(26, 127, 212, 0.1);
  border: 1px solid var(--border2);
  color: var(--blue-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  animation: fu 0.7s 0.05s both;
}
.h-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.5);
  }
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  animation: fu 0.7s 0.12s both;
}
.hero-title .grad {
  background: linear-gradient(90deg, var(--blue-bright), #70d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  animation: fu 0.7s 0.2s both;
}
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary-te {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 24px rgba(26, 127, 212, 0.35);
}
.btn-primary-te:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(26, 127, 212, 0.6);
  color: #fff;
}
.btn-ghost-te {
  border: 1px solid var(--border2);
  color: var(--blue-bright);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s;
  background: rgba(26, 127, 212, 0.05);
}
.btn-ghost-te:hover {
  background: rgba(26, 127, 212, 0.12);
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}
.hero-stat-wrap {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 3rem;
  animation: fu 0.7s 0.36s both;
}
.hs-num {
  font-family: var(--ff-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--text), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-lbl {
  font-size: 0.74rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Hero float cards */
.hcards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fu 0.7s 0.4s both;
}
.hc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fly 5s ease-in-out infinite;
}
.hc:nth-child(2) {
  animation-delay: -2s;
}
.hc:nth-child(3) {
  animation-delay: -3.5s;
}
@keyframes fly {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hc-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}
.hc-val {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--blue-bright);
}
.hc-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.hc-bar {
  height: 3px;
  background: var(--surface);
  border-radius: 2px;
  margin-top: 0.8rem;
  overflow: hidden;
}
.hc-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
  animation: bw 1.8s 1s ease both;
}
@keyframes bw {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}
.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue);
  display: inline-block;
  margin-right: 0.4rem;
  animation: blink 2s infinite;
}

/* ── MARQUEE ── */
.mq-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
}
.mq-inner {
  display: flex;
  width: max-content;
  animation: mqa 28s linear infinite;
}
.mq-item {
  font-family: var(--ff-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 0 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mq-dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue);
}
@keyframes mqa {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION COMMON ── */
.te-section {
  padding: 6rem 0;
}
.te-section.bg2 {
  background: var(--bg2);
}
.te-section.bg1 {
  background: var(--bg);
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.2rem;
}
.sec-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-bright));
}
.sec-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
}
.sec-title em {
  background: linear-gradient(90deg, var(--blue-bright), #70d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.sec-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
  font-weight: 300;
  margin-top: 1rem;
}

/* ── SERVICES ── */
.svc-sticky {
  position: sticky;
  top: 6rem;
}
.svc-item {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  cursor: none;
  transition: padding-left 0.3s;
  position: relative;
}
.svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-deep), var(--blue-bright));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s;
}
.svc-item:hover {
  padding-left: 0.8rem;
}
.svc-item:hover::before {
  transform: scaleY(1);
}
.svc-item:first-child {
  border-top: 1px solid var(--border);
}
.svc-num {
  font-family: var(--ff-head);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.05em;
  padding-top: 0.25rem;
  flex-shrink: 0;
  width: 2.5rem;
}
.svc-title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.svc-arrow {
  color: var(--blue-bright);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-6px);
  margin-left: auto;
}
.svc-item:hover .svc-arrow {
  opacity: 1;
  transform: translateX(0);
}
.svc-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 0.4rem;
}
.tech-tag {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid var(--border2);
  color: var(--blue-bright);
  background: rgba(26, 127, 212, 0.06);
  display: inline-block;
  margin: 0.2rem 0.2rem 0 0;
}

/* ── ABOUT ── */
.about-vis {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.ab-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: sp linear infinite;
}
.ab-ring:nth-child(1) {
  inset: 0;
  border-color: rgba(26, 127, 212, 0.2);
  animation-duration: 22s;
}
.ab-ring:nth-child(2) {
  inset: 12%;
  border-color: rgba(46, 156, 245, 0.15);
  animation-duration: 16s;
  animation-direction: reverse;
}
.ab-ring:nth-child(3) {
  inset: 24%;
  border-color: rgba(13, 58, 140, 0.3);
  animation-duration: 12s;
}
@keyframes sp {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.ab-ring::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 10px var(--blue-bright);
}
.ab-center {
  position: relative;
  z-index: 2;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(26, 127, 212, 0.25),
    inset 0 0 40px rgba(13, 58, 140, 0.3);
  overflow: hidden;
}
.ab-center img {
  width: 95px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(46, 156, 245, 0.6));
}
.apt-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 0.9rem;
  height: 100%;
}
.apt-card:hover {
  border-color: var(--border2);
  box-shadow: 0 4px 24px rgba(26, 127, 212, 0.12);
}
.apt-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.apt-card h5 {
  font-family: var(--ff-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.apt-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── PORTFOLIO ── */
.port-link {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 3px;
  transition: letter-spacing 0.2s;
}
.port-link:hover {
  letter-spacing: 0.1em;
  color: var(--blue-bright);
}
.pc {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s,
    border-color 0.3s;
  cursor: none;
  height: 100%;
}
.pc:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-color: var(--border2);
}
.pc-vis {
  height: 320px;
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pc-vis img {
  width: 100%;
}
.pc-vis::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 80%,
    rgba(26, 127, 212, 0.12),
    transparent
  );
  pointer-events: none;
}
.pv1 {
  background: linear-gradient(135deg, #030d28, #071e5a);
}
.pv2 {
  background: linear-gradient(135deg, #030d1a, #04174a);
}
.pv3 {
  background: linear-gradient(135deg, #040b20, #061a4f);
}
.pv4 {
  background: linear-gradient(135deg, #050e1f, #071650);
}
.pv5 {
  background: linear-gradient(135deg, #03091a, #051335);
}
.pc-screen {
  width: 72%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(26, 127, 212, 0.2);
  transform: perspective(700px) rotateX(6deg) rotateY(-2deg);
  transition: transform 0.4s;
}
.pc:hover .pc-screen {
  transform: perspective(700px) rotateX(0) rotateY(0);
}
.pc-bar {
  height: 24px;
  background: rgba(7, 30, 90, 0.9);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.pc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.pc-body {
  background: rgba(3, 10, 30, 0.95);
  padding: 12px;
}
.pc-ln {
  height: 7px;
  border-radius: 3px;
  background: rgba(26, 127, 212, 0.1);
  margin-bottom: 6px;
}
.pc-ln.hi {
  background: rgba(26, 127, 212, 0.4);
  width: 65%;
}
.pc-ln.sh {
  width: 42%;
}
.pc-ln.ti {
  width: 28%;
  height: 5px;
}
.pc-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-top: 8px;
}
.pc-bl {
  height: 28px;
  border-radius: 4px;
  background: rgba(26, 127, 212, 0.07);
}
.pc-info {
  padding: 1.3rem 1.5rem;
}
.pc-cat {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.4rem;
}
.pc-info h5 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.pc-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── TESTIMONIALS ── */
.tc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: 100%;
}
.tc::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: 1.2rem;
  font-family: Georgia, serif;
  font-size: 9rem;
  color: rgba(26, 127, 212, 0.06);
  line-height: 1;
  pointer-events: none;
}
.tc:hover {
  border-color: var(--border2);
  box-shadow: 0 8px 40px rgba(26, 127, 212, 0.12);
}
.tc-stars {
  color: var(--blue-bright);
  font-size: 0.82rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.tc-text {
  font-size: 0.9rem;
  color: rgba(221, 238, 255, 0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.tc-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.av1 {
  background: linear-gradient(135deg, #0d3a8c, #1a7fd4);
}
.av2 {
  background: linear-gradient(135deg, #07235a, #2e9cf5);
}
.av3 {
  background: linear-gradient(135deg, #08194d, #1a7fd4);
}
.tc-name {
  font-family: var(--ff-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.tc-role {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ── CONTACT ── */
.contact-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 58, 140, 0.25), transparent 70%);
  bottom: -300px;
  right: -200px;
  pointer-events: none;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.cd-label {
  font-family: var(--ff-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.cd-val {
  font-size: 1rem;
  color: var(--text-muted);
}
.promise-box {
  padding: 1.4rem 0rem;
}
.promise-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.promise-box strong {
  color: var(--blue-bright);
}
/* Form overrides */
.te-form .form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.te-form .form-control,
.te-form .form-select {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
}
.te-form .form-control::placeholder {
  color: var(--text-faint) !important;
}
.te-form .form-control:focus,
.te-form .form-select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.15) !important;
  background: var(--card) !important;
  color: var(--text) !important;
}
.te-form .form-select option {
  background: var(--card);
  color: var(--text);
}
.te-form textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.btn-submit {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem 2.4rem;
  border-radius: 8px;
  border: 1px solid var(--border2);
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(26, 127, 212, 0.3);
  cursor: none;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(26, 127, 212, 0.55);
  color: #fff;
}

/* ── FOOTER ── */
.te-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.2rem 0;
}
.footer-logo img {
  height: 30px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(92%) sepia(93%) saturate(0%)
    hue-rotate(202deg) brightness(106%) contrast(106%);
}
.footer-logo span {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}
.footer-logo em {
  color: var(--blue-bright);
  font-style: normal;
}
.footer-link {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--blue-bright);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ── SCROLL REVEAL ── */
.rev {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
    transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.rev.vis {
  opacity: 1;
  transform: translateY(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
#hero video {
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  left: 190px;
  position: absolute;
}
#loader {
  display: none;
  text-align: center;
  font-size: 25px;
}
#loader span{
  font-size: 10px;
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
  box-shadow: 0 0 20px rgba(26, 127, 212, 0.25);
  border-color: rgb(46 156 245);
  border-right-color: transparent;
}
.responseMsg{
  text-align: center;
  font-size: 25px;
}
.whatsapps {
  position: fixed;
  z-index: 999;
  /* background-color: #fff; */
  border-radius: 50%;
  margin: 10px;
  right: 5px;
  bottom: -10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  /* border: 1px solid #fff; */
  /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5); */
}
.whatsapps a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  color: #fff;
}
.whatsapp img {
  color: #fff;
  height: 40px;
  border-radius: 0;
  /* filter: hue-rotate(45deg); */
}
@media (max-width: 991px) {
  .navbar-nav {
    display: block;
  }
  .btn-nav-cta {
    display: block;
    text-align: center;
  }
  .nav-link {
    display: block;
    margin: 10px 0px;
  }
}
@media (max-width: 500px) {
  #hero video {
    top: 0;
    width: auto;
    height: auto;
    opacity: 0.2;
    left: 0px;
    position: absolute;
  }
  .h-badge {
    font-size: 0.62rem;
  }
}
