:root {
  --primary: #0a3d8f;
  --primary-light: #1a5fd4;
  --primary-glow: #2979ff;
  --accent: #00c6ff;
  --accent2: #00e5ff;
  --dark: #020c1b;
  --dark2: #071428;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.12);
  --text: #e8f4fd;
  --text-muted: #7a9cc0;
  --white: #ffffff;
  --card-bg: rgba(10, 30, 70, 0.6);
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ===================== SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 2px;
}

/* ===================== CANVAS BG ===================== */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===================== NOISE OVERLAY ===================== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

section,
nav,
footer {
  position: relative;
  z-index: 2;
}

/* ===================== NAVBAR ===================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(2, 12, 27, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo img {
  height: 42px;
  filter: brightness(1.1);
}

.navbar-nav .nav-link {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 14px !important;
  transition: color 0.3s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--accent) !important;
}
.navbar-nav .nav-link:hover::after {
  width: 60%;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.3s !important;
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.3);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 198, 255, 0.5) !important;
}

.navbar-toggler {
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 95, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 95, 212, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(41, 121, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(41, 121, 255, 0.12);
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--primary-glow) 50%,
    #a78bfa 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.btn-primary-glow {
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--accent) 100%
  );
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(41, 121, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-glow::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s;
}

.btn-primary-glow:hover::before {
  transform: translateX(100%) rotate(45deg);
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 198, 255, 0.5);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  background: rgba(0, 198, 255, 0.06);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
}

.stat-item {
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* 3D HERO VISUAL */
#three-canvas {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  position: relative;
}

.hero-visual-wrap {
  position: relative;
}

.hero-visual-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.4),
    rgba(0, 198, 255, 0.2),
    transparent
  );
  z-index: -1;
}

.floating-card {
  position: absolute;
  background: rgba(10, 30, 70, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: -1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.fc-text {
  font-size: 0.78rem;
}
.fc-label {
  color: var(--text-muted);
  font-size: 0.68rem;
}
.fc-value {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===================== SECTION COMMONS ===================== */
.section-pad {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===================== FEATURES ===================== */
#features {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(41, 121, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(41, 121, 255, 0.4);
  box-shadow:
    0 20px 60px rgba(10, 30, 70, 0.8),
    0 0 40px rgba(41, 121, 255, 0.1);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2),
    rgba(0, 198, 255, 0.1)
  );
  border: 1px solid rgba(41, 121, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 18px;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  transform: scale(1.1) rotate(5deg);
}

.feature-card h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===================== MODULES ===================== */
#modules {
  background: var(--dark);
}

.module-card-3d {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.module-card-3d .module-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(41, 121, 255, 0.08);
  position: absolute;
  top: 10px;
  right: 16px;
  line-height: 1;
  transition: all 0.4s;
}

.module-card-3d:hover .module-num {
  color: rgba(41, 121, 255, 0.2);
}

.module-card-3d:hover {
  transform: perspective(800px) rotateY(-3deg) rotateX(3deg) translateY(-8px);
  border-color: rgba(0, 198, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    15px 0 40px rgba(41, 121, 255, 0.1);
}

.module-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(41, 121, 255, 0.3);
}

.module-card-3d h5 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.module-card-3d p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ===================== MOBILE APP ===================== */
#mobile-app {
  background: linear-gradient(
    135deg,
    var(--dark2) 0%,
    rgba(10, 61, 143, 0.15) 50%,
    var(--dark2) 100%
  );
  position: relative;
  overflow: hidden;
}

#mobile-app::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 198, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.phone-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 220px;
  height: 440px;
  background: linear-gradient(180deg, #0d1f3c, #0a1628);
  border: 3px solid rgba(41, 121, 255, 0.4);
  border-radius: 35px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(41, 121, 255, 0.15);
  overflow: hidden;
  animation: float 3.5s ease-in-out infinite;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.phone-screen {
  position: absolute;
  inset: 20px 8px 8px;
  background: linear-gradient(180deg, #0a1f4a, #061228);
  border-radius: 28px;
  padding: 20px 12px;
  overflow: hidden;
}

.phone-header {
  font-size: 0.65rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.phone-card {
  background: rgba(41, 121, 255, 0.12);
  border: 1px solid rgba(41, 121, 255, 0.2);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 8px;
  font-size: 0.62rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-card i {
  color: var(--accent);
  font-size: 0.7rem;
}

.phone-mockup-2 {
  width: 180px;
  height: 380px;
  background: linear-gradient(180deg, #0d1f3c, #0a1628);
  border: 3px solid rgba(0, 198, 255, 0.3);
  border-radius: 30px;
  position: absolute;
  right: -30px;
  top: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float 3.5s ease-in-out infinite;
  animation-delay: -1.2s;
  overflow: hidden;
}

.phone-mockup-2::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.mobile-features-list {
  list-style: none;
  padding: 0;
}
.mobile-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.92rem;
  color: var(--text);
}

.mobile-features-list li:last-child {
  border-bottom: none;
}

.mf-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2),
    rgba(0, 198, 255, 0.1)
  );
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ===================== HOW IT WORKS ===================== */
#how-it-works {
  background: var(--dark);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--primary-light),
    var(--accent),
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  padding-right: 60px;
  padding-left: 0;
}

.timeline-content {
  flex: 1;
  padding-left: 60px;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  z-index: 1;
  box-shadow:
    0 0 0 6px rgba(41, 121, 255, 0.15),
    0 0 30px rgba(41, 121, 255, 0.4);
}

.timeline-step {
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===================== PRICING ===================== */
#pricing {
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.pricing-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(41, 121, 255, 0.5);
  background: rgba(10, 30, 80, 0.8);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.08),
    rgba(0, 198, 255, 0.04)
  );
  pointer-events: none;
}

.pricing-card.featured::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--accent),
    var(--primary-light)
  );
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.plan-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-features li i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ===================== DEMO FORM ===================== */
#demo {
  background: var(--dark);
}

.demo-wrap {
  background: var(--card-bg);
  backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.demo-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--accent),
    #a78bfa
  );
}

.form-label-custom {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s;
  outline: none;
}

.form-control-custom::placeholder {
  color: rgba(122, 156, 192, 0.5);
}
.form-control-custom:focus {
  border-color: rgba(41, 121, 255, 0.5);
  background: rgba(41, 121, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(41, 121, 255, 0.1);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 120px;
}

.hp-field {
  display: none !important;
}

/* ===================== CONTACT ===================== */
#contact {
  background: linear-gradient(180deg, var(--dark2), var(--dark));
}

.contact-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(41, 121, 255, 0.3);
  transform: translateY(-4px);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(
    135deg,
    rgba(41, 121, 255, 0.2),
    rgba(0, 198, 255, 0.1)
  );
  border: 1px solid rgba(41, 121, 255, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.contact-card h6 {
  font-family: var(--font-head);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  margin: 0;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--accent);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: var(--dark);
}

.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: all 0.4s;
}

.testimonial-card::before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(41, 121, 255, 0.1);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(41, 121, 255, 0.3);
  transform: translateY(-6px);
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  font-family: var(--font-head);
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}
.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================== FAQ ===================== */
#faq {
  background: var(--dark2);
}

.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(41, 121, 255, 0.4);
}

.faq-question {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  transition: all 0.3s;
  user-select: none;
}

.faq-question:hover {
  color: var(--accent);
}
.faq-icon {
  transition: transform 0.3s;
  color: var(--accent);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    padding 0.3s;
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 22px;
}

/* ===================== CTA SECTION ===================== */
#cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    rgba(10, 61, 143, 0.2) 50%,
    var(--dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(41, 121, 255, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ===================== FOOTER ===================== */
footer {
  background: #010a16;
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 30px;
}

.footer-logo img {
  height: 38px;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.social-btn:hover {
  background: rgba(41, 121, 255, 0.2);
  border-color: var(--primary-light);
  color: var(--accent);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  color: var(--accent);
}
.footer-links a:hover::before {
  opacity: 1;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 40px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom .heart {
  color: #e74c3c;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .timeline::before {
    left: 26px;
  }
  .timeline-item {
    flex-direction: column !important;
    padding-left: 70px;
  }
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    padding-right: 0;
    padding-left: 0;
  }
  .timeline-content {
    padding-left: 0 !important;
  }
  .timeline-dot {
    left: 0;
  }
  .demo-wrap {
    padding: 36px 24px;
  }
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
