:root {
  --wrap: 1180px;
  --bg: #fbfdff;
  --muted: #6d7883;
  --accent: #1e90ff;
  --dark: #0f1721;
  --card-shadow: 0 18px 36px rgba(19, 42, 66, 0.06);
  --soft-shadow: 0 10px 24px rgba(23, 42, 77, 0.06);
  --radius: 14px;
  font-synthesis: none;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #0b2330;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}

/* TOP INFO BAR */
.top-info-bar {
  background: #f4f6f8;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
}

.top-info-inner {
  max-width: 1200px;
  margin: auto;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.top-info-bar svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Mobile */
@media (max-width: 768px) {
  .top-info-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* Navigation section*/
element.style {
  transform: none;
}

.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.bg-card\/95 {
  background-color: hsl(0deg 0% 99.46% / 95%);
}

.border-border\/50 {
  border-color: hsl(214deg 29.77% 89.9% / 50%);
}

.border-b {
  border-bottom-width: 1px;
}

.z-50 {
  z-index: 50;
}

.top-0 {
  top: 0;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

.fixed {
  position: fixed;
}

/* nav link */
.nav link .font-medium {
  font-weight: 500;
}

.nav-link {
  display: flex;
  gap: 22px;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #2563eb;
  color: #0f172bcc;
  /* blue */
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-duration: .3s;
  animation-duration: .3s;
}

.nav-link:hover {
  color: #3d83f5;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.text-primary {
  color: #3c83f5;
}

a {
  color: inherit;
  text-decoration: inherit;
}

* {
  border-color: hsl(214deg 34.36% 91.12%);
}

/* mobile screen navbar */
/* Mobile menu link hover & touch effect */
.mobile-nav-list a {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.15s ease;
}

/* Desktop hover */
.mobile-nav-list a:hover {
  background: rgba(30, 144, 255, 0.08);
  /* light primary */
  color: #1e90ff;
}

/* Mobile touch feedback */
.mobile-nav-list a:active {
  background: rgba(30, 144, 255, 0.15);
  transform: scale(0.98);
}

/* Remove ugly blue tap highlight on mobile */
.mobile-nav-list a {
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: #1e90ff;
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.25s ease;
}

.mobile-nav-list a:hover::before,
.mobile-nav-list a:active::before {
  height: 60%;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.border-border\/50 {
  border-color: hsl(214deg 27.33% 90.03% / 50%);
}

.border-t {
  border-top-width: 1px;
}

/* WRAPPER */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 28px
}

/* --- Mobile panel (drop-in) --- */
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
}

.mobile-panel.open {
  display: flex;
  pointer-events: auto;
}

.mobile-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 30, 0.12);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  z-index: 1200;
  pointer-events: auto;
  opacity: 0;
  transition: opacity .28s ease;
}

.mobile-panel.open .mobile-panel-backdrop {
  opacity: 1;
}

.mobile-panel-card {
  margin-top: 12px;
  width: calc(100% - 32px);
  max-width: 420px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(9, 30, 63, 0.10);
  border: 1px solid rgba(11, 34, 48, 0.06);
  overflow: hidden;
  z-index: 1210;
  /* must be higher than backdrop */
  pointer-events: auto;
  transform-origin: top center;
  transform: translateY(-14px) scale(0.98);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2, .9, .28, 1), opacity .28s ease;
}

.mobile-panel.open .mobile-panel-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(11, 34, 48, 0.03);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.96));
}

.brand-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit
}

.brand-text-sm {
  font-weight: 800
}

.mobile-close {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.mobile-close svg path {
  stroke: #0b2330;
  stroke-width: 2;
  stroke-linecap: round
}

.mobile-panel-body {
  padding: 10px
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

/* mobile screen icon for jd sales */
element.style {
  transform: none;
}

.to-accent {
  --tw-gradient-to: hsl(199deg 88.62% 47.84%) var(--tw-gradient-to-position);
}

.from-primary {
  --tw-gradient-from: hsl(217deg 92.43% 60.46%) var(--tw-gradient-from-position);
  /* --tw-gradient-to: hsl(217deg 90.97% 59.9% / 0%) var(--tw-gradient-to-position); */
  --tw-gradient-stops: hsl(217deg 91.65% 60.26%), var(--tw-gradient-to);
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.rounded-xl {
  border-radius: .75rem;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.flex {
  display: flex;
}

* {
  border-color: hsl(214deg 34.36% 91.12%);
}

/* Prevent panel showing on large screens (desktop) */
@media (min-width: 992px) {
  .mobile-panel {
    display: none !important;
  }
}

/* HERO */
.hero {
  background:
    linear-gradient(180deg, rgba(30, 144, 255, 0.03), rgba(255, 255, 255, 0.0));
  padding: 70px 0 110px;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(30, 144, 255, 0.10);
  /* primary/10 */
  color: var(--accent);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  margin-top: -5rem;
}

.hero-main-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  /* margin-right: 20rem; */
  color: #071427;
}

.lg\:mt-20 {
  margin-top: 7rem;
}

@media (min-width:768px) {
  .hero-main-title {
    font-size: 56px;
  }
}

@media (min-width:1024px) {
  .hero-main-title {
    font-size: 64px;
  }
}

@media (min-width:1280px) {
  .hero-main-title {
    font-size: 72px;
  }
}

.gradient-text {
  background: linear-gradient(90deg, #2f8fff, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari fix */
  color: transparent;
  font-weight: 800;
}

.hero-description {
  max-width: 720px;
  font-size: 18px;
  color: #667681;
  margin-bottom: 32px;
}

@media (min-width:768px) {
  .hero-description {
    font-size: 20px;
  }
}

.btn-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(90deg, #2f8fff, #1e90ff);
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 10px 28px rgba(30, 144, 255, 0.20);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-full:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(30, 144, 255, 0.28);
}

.btn-outline {
  display: inline-flex;
  padding: 16px 32px;
  border-radius: 14px;
  border: 2px solid rgba(30, 144, 255, 0.30);
  background: transparent;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: rgba(30, 144, 255, 0.08);
  transform: translateY(-3px);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 60px;
  }
}

/* Scroll indicator center alignment */
.scroll-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
}

.scroll-mouse {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 26px;
  height: 44px;
  border: 2px solid #1e90ff80;
  border-radius: 20px;
  position: relative;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #1e78ff;
  border-radius: 50%;
  margin-top: 6px;
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(16px);
  }
}

/* ===== Scroll indicator mobile center fix ===== */
@media (max-width: 768px) {
  .scroll-indicator {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .scroll-mouse {
    margin: 0 auto;
  }
}

/* FEATURES */
.features {
  padding: 34px 0 20px
}

.border-y {
  border-top: 1px solid rgba(15, 23, 33, 0.06);
  border-bottom: 1px solid rgba(15, 23, 33, 0.06);
  margin-top: 10px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0
}

.feat-grid li {
  text-align: center;
  padding: 32px 16px;
  border-radius: 12px
}

.icon-round {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(180deg, #4fc1ff, #1e90ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--soft-shadow)
}

.feat-grid h4 {
  margin: 0 0 8px;
  font-weight: 700
}

.feat-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px
}

/* PRODUCTS */
.section-title {
  font-size: 44px;
  text-align: center;
  margin: 40px 0 6px;
  font-weight: 800
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 12px
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 33, 0.04);
  box-shadow: 0 40px 60px rgba(9, 30, 63, 0.03);
  transition: transmobile-panel-body .18s ease, box-shadow .18s ease
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

.card-body {
  padding: 18px 20px 22px;
  position: relative
}

.card-body h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0b2330
}

.card-body .learn {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none
}

.card .meta {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  gap: 10px
}

/* TESTIMONIALS */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px
}

.test-card {
  background: linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(244, 247, 251, 1));
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  border: 1px solid rgba(15, 23, 33, 0.03);
  box-shadow: 0 18px 40px rgba(9, 30, 63, 0.03)
}

.quote-badge {
  position: absolute;
  left: 20px;
  top: -18px;
  background: var(--accent);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

.stars {
  color: #FFBF00;
  margin-top: 8px
}

.test-card .quote {
  color: var(--muted);
  margin: 10px 0 14px
}

.tester {
  display: flex;
  gap: 12px;
  align-items: center
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(180deg, #cfe9ff, #dff3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0b2330
}

.muted {
  color: var(--muted);
  font-size: 13px
}

/* CTA BAND */
.cta-band-new {
  background: linear-gradient(90deg, #1e90ff, #2f8fff);
  padding: 60px 20px;
  text-align: center;
  color: white;
  margin-top: 40px;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 56px;
  }
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 28px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

/* Primary CTA Button */
.cta-btn-primary {
  background: white;
  color: #1e90ff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.cta-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Outline CTA Button */
.cta-btn-outline {
  border: 2px solid white;
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Arrow Icon */
.icon-arrow {
  width: 22px;
  height: 22px;
  stroke: #1e90ff;
}

.cta-btn-primary:hover .icon-arrow {
  stroke: #1877dd;
}

/* floating actions */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 70;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(9, 30, 63, 0.12)
}

.fab.wh {
  background: #00a83e;
  border-radius: 50px;
  margin: 0.5rem;
}

.fab.call {
  background: #3C7FE8;
  border-radius: 50px;
  margin: 0.5rem;
}

/* FOOTER */
.site-footer-new {
  background: linear-gradient(0deg, #071027 0%, #071027 100%);
  /* near-black */
  color: #d1e3f6;
  padding: 48px 0 28px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* container */
.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* grid layout: 1 / 2 / 4 columns */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

/* columns */
/* .footer-col {
  min-width: 0;
} */

/* Brand column */
.footer-brand .brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 12px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2f8fff 0%, #4fc1ff 100%);
  box-shadow: 0 10px 28px rgba(47, 143, 255, 0.12);
}

.brand-badge svg {
  color: white;
  width: 20px;
  height: 20px;
}

.brand-text {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-desc {
  color: rgba(209, 227, 246, 0.9);
  margin: 0;
  line-height: 1.6;
}

/* section titles */
.foot-title {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #e9f4ff;
  font-weight: 700;
}

/* links */
.foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foot-links li {
  margin-bottom: 8px;
}

.foot-links a {
  color: rgba(209, 227, 246, 0.75);
  text-decoration: none;
  transition: color .18s ease;
}

.foot-links a:hover {
  color: var(--accent, #1e90ff);
}

/* contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(209, 227, 246, 0.78);
  text-decoration: none;
  transition: color .18s ease;
}

.contact-link:hover {
  color: var(--accent, #1e90ff);
}

/* icons inside links */
.icon {
  stroke: rgba(209, 227, 246, 0.85);
}

.icon-phone,
.icon-mail {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* footer bottom row */
.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  color: rgba(125, 141, 160, 0.7);
  font-size: 14px;
}

/* responsive breakpoints */
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

/* small tweaks */
.footer-col ul {
  margin: 0;
  padding: 0;
}

.footer-container .brand-desc {
  max-width: 320px;
}

/* Accessible focus */
a:focus {
  outline: 3px solid rgba(30, 144, 255, 0.18);
  outline-offset: 2px;
}

/* responsive */
@media (max-width:1100px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width:720px) {
  .hero-title {
    font-size: 36px
  }

  .prod-grid {
    grid-template-columns: 1fr
  }

  .test-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  /* .wrap {
    padding: 18px
  } */
}

@media (max-width:420px) {
  .nav {
    display: none
  }

  .hero-sub {
    font-size: 15px
  }

  .brand-text {
    font-size: 14px
  }
}

/* FIX FOOTER MOBILE ALIGNMENT */
@media (max-width: 768px) {

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .foot-links {
    padding-left: 0;
  }

  .foot-links li {
    margin-bottom: 8px;
  }
}
