:root {
  --nf-bg: #f5f7fb;
  --nf-surface: #ffffff;
  --nf-ink: #101828;
  --nf-muted: #667085;
  --nf-line: #e6eaf2;
  --nf-primary: #155eef;
  --nf-primary-2: #06aed4;
  --nf-success: #12b76a;
  --nf-warning: #f79009;
  --nf-dark: #07111f;
  --nf-radius: 8px;
  --nf-shadow: 0 18px 54px rgba(16, 24, 40, 0.12);
  --nf-soft-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.nativeflow-theme {
  margin: 0;
  background: var(--nf-bg);
  color: var(--nf-ink);
  font-family: "Inter", "Maven Pro", Arial, sans-serif;
  overflow-x: hidden;
}

a,
button,
.nf-service-card,
.nf-mini-card,
.nf-feature-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.nf-navbar {
  min-height: 76px;
  border-bottom: 1px solid rgba(230, 234, 242, 0.84);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nf-navbar .navbar-brand img {
  max-width: 148px;
  height: 46px;
  object-fit: contain;
}

.nf-navbar .nav-link {
  padding: 0.7rem 0.9rem !important;
  font-size: 0.92rem;
  font-weight: 850;
}

.nf-btn,
.nf-navbar .btn,
.nf-search-panel .btn,
.nf-cta .btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0 !important;
  border-radius: var(--nf-radius) !important;
  padding: 12px 20px !important;
  font-size: 0.9rem;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.nf-btn:hover,
.nf-navbar .btn:hover,
.nf-search-panel .btn:hover,
.nf-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(21, 94, 239, 0.22);
}

.nf-hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  padding: 138px 0 116px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(21, 94, 239, 0.72)),
    url("landing-assets/img/site-bg.jpg") center/cover no-repeat;
}

.nf-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(6, 174, 212, 0.5), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(18, 183, 106, 0.28), transparent 34%);
  pointer-events: none;
}

.nf-hero .container {
  position: relative;
  z-index: 2;
}

.nf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: #dff7ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nf-hero h1 {
  max-width: 760px;
  margin: 20px 0 18px;
  color: #ffffff;
  font-size: clamp(2.35rem, 5.7vw, 5.2rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.nf-hero-copy {
  max-width: 690px;
  color: #d9e9ff;
  font-size: 1.08rem;
  line-height: 1.82;
}

.nf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.nf-phone-shell {
  max-width: 390px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nf-app-screen {
  overflow: hidden;
  border-radius: 22px;
  background: var(--nf-bg);
}

.nf-app-top {
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, #155eef, #06aed4);
}

.nf-balance {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--nf-radius);
  background: rgba(255, 255, 255, 0.16);
}

.nf-balance span {
  display: block;
  color: #dff7ff;
  font-size: 0.8rem;
}

.nf-balance strong {
  display: block;
  margin-top: 4px;
  font-size: 2rem;
  line-height: 1;
}

.nf-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
}

.nf-quick {
  min-height: 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
  color: var(--nf-ink);
  font-size: 0.72rem;
  font-weight: 850;
}

.nf-quick i {
  color: var(--nf-primary);
  font-size: 1.1rem;
}

.nf-mini-list {
  padding: 0 18px 20px;
}

.nf-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 13px 14px;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
}

.nf-mini-card strong {
  display: block;
  font-size: 0.88rem;
}

.nf-mini-card span {
  display: block;
  color: var(--nf-muted);
  font-size: 0.76rem;
}

.nf-search-panel {
  position: relative;
  z-index: 3;
  margin-top: -62px;
  padding: 22px;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
  box-shadow: var(--nf-shadow);
}

.nf-search-panel .form-control {
  min-height: 52px;
  border: 1px solid var(--nf-line) !important;
  border-radius: var(--nf-radius);
  background: #f9fbff;
  color: var(--nf-ink);
  font-weight: 800;
}

.nf-section {
  padding: 86px 0;
}

.nf-section-white {
  background: #ffffff;
}

.nf-section-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.nf-section-title h2 {
  margin: 14px 0 12px;
  color: var(--nf-ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
  line-height: 1.05;
}

.nf-section-title p {
  margin: 0;
  color: var(--nf-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.nf-service-card {
  height: 100%;
  display: block;
  padding: 16px;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
  box-shadow: var(--nf-soft-shadow);
  text-align: center;
}

.nf-service-card:hover {
  border-color: rgba(21, 94, 239, 0.32);
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(21, 94, 239, 0.15);
  text-decoration: none;
}

.nf-service-card img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.nf-feature-card {
  height: 100%;
  padding: 28px 24px;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
  box-shadow: var(--nf-soft-shadow);
}

.nf-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--nf-shadow);
}

.nf-feature-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: var(--nf-radius);
  background: linear-gradient(135deg, var(--nf-primary), var(--nf-primary-2));
  color: #ffffff;
  font-size: 1.32rem;
  box-shadow: 0 12px 30px rgba(21, 94, 239, 0.24);
}

.nf-feature-card h3 {
  color: var(--nf-ink);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nf-feature-card p {
  margin: 0;
  color: var(--nf-muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.nf-panel {
  overflow: hidden;
  border: 1px solid var(--nf-line);
  border-radius: var(--nf-radius);
  background: #ffffff;
  box-shadow: var(--nf-shadow);
}

.nf-panel-copy {
  padding: 46px;
}

.nf-panel h2 {
  color: var(--nf-ink);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 950;
  line-height: 1.08;
}

.nf-panel p {
  color: var(--nf-muted);
  line-height: 1.78;
}

.nf-panel-art {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: linear-gradient(135deg, rgba(21, 94, 239, 0.1), rgba(6, 174, 212, 0.16));
}

.nf-panel-art img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 42px rgba(16, 24, 40, 0.2));
}

.nf-cta {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(21, 94, 239, 0.9)),
    url("landing-assets/img/site-bg.jpg") center/cover no-repeat;
}

.nf-cta h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 950;
  line-height: 1.08;
}

.nf-cta p {
  color: #d9e9ff;
  line-height: 1.78;
}

.nf-mobile-bar {
  display: none;
}

.nf-footer {
  background: var(--nf-dark);
}

.nf-footer a {
  text-decoration: none;
}

.facebook:hover { color: #1877f2 !important; }
.twitter:hover { color: #1da1f2 !important; }
.youtube:hover { color: #ff0000 !important; }
.instagramorange:hover { color: #f46f30 !important; }
.googleblue:hover { color: #4285f4 !important; }

@media (max-width: 991.98px) {
  .nf-hero {
    min-height: auto;
    padding: 124px 0 96px;
  }

  .nf-phone-shell {
    margin: 42px auto 0;
  }

  .nf-search-panel {
    margin-top: -42px;
  }

  .nf-panel-copy {
    padding: 34px 26px;
  }
}

@media (max-width: 575.98px) {
  body.nativeflow-theme {
    padding-bottom: 76px;
  }

  .nf-navbar .navbar-brand img {
    max-width: 126px;
    height: 40px;
  }

  .nf-hero {
    padding: 108px 0 78px;
  }

  .nf-hero-actions .btn,
  .nf-hero-actions .nf-btn {
    width: 100%;
  }

  .nf-phone-shell {
    border-radius: 22px;
  }

  .nf-app-screen {
    border-radius: 16px;
  }

  .nf-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nf-search-panel {
    padding: 16px;
  }

  .nf-section {
    padding: 62px 0;
  }

  .nf-service-card {
    padding: 12px;
  }

  .nf-service-card img {
    height: 58px;
  }

  .nf-panel-art {
    min-height: 260px;
    padding: 24px;
  }

  .nf-mobile-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(230, 234, 242, 0.88);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nf-mobile-bar a {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    color: var(--nf-muted);
    font-size: 0.68rem;
    font-weight: 900;
    text-decoration: none;
  }

  .nf-mobile-bar a:first-child {
    background: #eef4ff;
    color: var(--nf-primary);
  }

  .nf-mobile-bar i {
    font-size: 1rem;
  }
}
