:root {
  --navy: #344A5E;
  --navy-dark: #253748;
  --teal: #0066cc;
  --teal-dark: #0052a3;
  --teal-light: #e6f0ff;
  --gray-bg: #f0f4f9;
  --gray: #64748b;
  --border: #e2e8f0;
  --text: #1e293b;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar-main {
  background: var(--navy);
  padding: .75rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 16px rgba(52, 74, 94, .28);
}

.navbar-main .nav-link {
  color: rgba(255, 255, 255, .78) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .9rem !important;
  transition: color .2s;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: #fff !important;
}

.btn-nav-cta {
  background: var(--teal);
  color: #fff !important;
  border-radius: 6px;
  padding: .42rem 1.15rem !important;
  font-weight: 600;
  font-size: .88rem;
  transition: background .2s, transform .15s;
}

.btn-nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 55%, #1a2d3e 100%);
  padding: 88px 0 76px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -90px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 102, 204, .14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -90px;
  left: -70px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(2, 121, 192, .11) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(0, 102, 204, .12);
  color: var(--teal);
  border: 1px solid rgba(0, 102, 204, .28);
  border-radius: 20px;
  padding: .3rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: var(--teal);
}

.hero-sub {
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 510px;
  margin-bottom: 2.2rem;
}

.btn-hero-prim {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: .8rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-hero-prim:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, .3);
}

.btn-hero-sec {
  background: transparent;
  color: rgba(255, 255, 255, .82);
  border: 1.5px solid rgba(255, 255, 255, .28);
  padding: .8rem 1.9rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: .97rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s, color .2s, background .2s;
}

.btn-hero-sec:hover {
  border-color: rgba(255, 255, 255, .58);
  color: #fff;
  background: rgba(255, 255, 255, .07);
}

/* ─── HERO MOCKUP ────────────────────────────────────────── */
.hero-mockup {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: 1.2rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-titlebar {
  color: rgba(255, 255, 255, .5);
  font-size: .76rem;
  margin-left: .4rem;
}

.mock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin-bottom: .7rem;
}

.mock-stat {
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  padding: .8rem 1rem;
}

.mock-stat-val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.mock-stat-val.green {
  color: var(--teal);
}

.mock-stat-lbl {
  font-size: .7rem;
  color: rgba(255, 255, 255, .45);
  margin-top: .18rem;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .48rem .7rem;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  margin-bottom: .4rem;
}

.mock-row .bi {
  color: var(--teal);
  font-size: .88rem;
}

.mock-row span {
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  flex: 1;
}

.mbadge {
  padding: .13rem .45rem;
  border-radius: 4px;
  font-size: .67rem;
  font-weight: 700;
  white-space: nowrap;
}

.mbadge-ok {
  background: rgba(0, 102, 204, .16);
  color: var(--teal);
}

.mbadge-warn {
  background: rgba(245, 158, 11, .2);
  color: #f59e0b;
}

.mbadge-info {
  background: rgba(2, 121, 192, .2);
  color: #38bdf8;
}

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: var(--teal);
  padding: 1.4rem 0;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-num {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.stat-lbl {
  font-size: .8rem;
  opacity: .85;
  margin-top: .15rem;
}

.stat-div {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .28);
}

/* ─── SECTIONS ───────────────────────────────────────────── */
section {
  padding: 80px 0;
}

.bg-gray {
  background: var(--gray-bg);
}

.sec-label {
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .45rem;
}

.sec-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .9rem;
}

.sec-sub {
  font-size: 1.03rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.72;
}

/* ─── FEATURE CARDS ──────────────────────────────────────── */
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(52, 74, 94, .1);
  border-color: transparent;
}

.feat-card:hover::before {
  transform: scaleX(1);
}

.feat-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feat-icon .bi {
  font-size: 1.45rem;
  color: var(--teal-dark);
}

.feat-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
}

.feat-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 0;
}

.feat-list li {
  font-size: .85rem;
  color: var(--gray);
  padding: .18rem 0;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}

.feat-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: .38rem;
  flex-shrink: 0;
}

/* ─── MODULE CARDS ───────────────────────────────────────── */
.mod-group-hdr {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: .55rem 1rem;
  border-radius: 7px;
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  height: 100%;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.mod-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 102, 204, .16);
  transform: translateY(-2px);
}

.mod-ico {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mod-ico .bi {
  font-size: 1.1rem;
  color: var(--teal-dark);
}

.mod-card h6 {
  font-size: .87rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .15rem;
}

.mod-card p {
  font-size: .77rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.42;
}

/* ─── INTEGRATION CARDS ──────────────────────────────────── */
.int-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.9rem;
  text-align: center;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  height: 100%;
}

.int-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(52, 74, 94, .1);
  transform: translateY(-3px);
}

.int-card .bi {
  font-size: 2.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: .9rem;
}

.int-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45rem;
}

.int-card p {
  font-size: .87rem;
  color: var(--gray);
  margin: 0;
}

/* ─── PRICING CARDS ──────────────────────────────────────── */
.price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2.2rem 2rem;
  height: 100%;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: 0 20px 50px rgba(0, 102, 204, .18);
  position: relative;
  transform: scale(1.025);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .74rem;
  font-weight: 700;
  padding: .23rem 1rem;
  border-radius: 20px;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price-plan {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}

.price-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.price-card .desc {
  font-size: .88rem;
  color: var(--gray);
}

.price-body {
  margin: 1.2rem 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--gray-bg);
  border-bottom: 1px solid var(--gray-bg);
}

.price-amount {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.1rem;
  vertical-align: super;
  margin-right: .15rem;
}

.price-amount span {
  font-size: .97rem;
  font-weight: 400;
  color: var(--gray);
}

.price-note {
  font-size: .79rem;
  color: var(--gray);
  margin-top: .28rem;
}

.price-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem;
}

.price-feats li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .42rem 0;
  font-size: .88rem;
  color: var(--gray);
  border-bottom: 1px solid #f8fafc;
}

.price-feats li .bi-check-lg {
  color: var(--teal);
  flex-shrink: 0;
}

.price-feats li .bi-x-lg {
  color: #cbd5e1;
  flex-shrink: 0;
}

.price-feats li.off {
  color: #cbd5e1;
}

.btn-price-prim {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background .2s, transform .2s;
}

.btn-price-prim:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-price-out {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #d0dae4;
  padding: .75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: border-color .2s;
}

.btn-price-out:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.cont-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cont-ico {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cont-ico .bi {
  color: var(--teal-dark);
  font-size: 1.28rem;
}

.cont-item h6 {
  font-size: .79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray);
  margin-bottom: .18rem;
}

.cont-item p {
  font-size: .96rem;
  color: var(--navy);
  font-weight: 500;
  margin: 0;
}

.cont-form .form-control,
.cont-form .form-select {
  border: 1.5px solid #dde3ea;
  border-radius: 8px;
  padding: .68rem 1rem;
  font-size: .91rem;
  transition: border-color .2s, box-shadow .2s;
}

.cont-form .form-control:focus,
.cont-form .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, .14);
}

.btn-submit {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: .8rem 2.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .96rem;
  width: 100%;
  transition: background .2s, transform .2s;
  cursor: pointer;
}

.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ─── ADDRESS CARD ───────────────────────────────────────── */
.cont-address-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.2rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, .07);
}

.cont-address-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cont-ico-lg {
  width: 56px;
  height: 56px;
}

.cont-address-brand h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.cont-address-sub {
  font-size: .82rem;
  color: var(--gray);
  font-weight: 500;
}

.cont-address-sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 78px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 102, 204, .16) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .9rem;
}

.cta-section p {
  color: rgba(255, 255, 255, .68);
  font-size: 1.03rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, .68);
  padding: 52px 0 28px;
}

.footer-desc {
  font-size: .87rem;
  line-height: 1.7;
  max-width: 258px;
  color: rgba(255, 255, 255, .52);
}

footer h6 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .95rem;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: .48rem;
}

footer ul li a {
  color: rgba(255, 255, 255, .52);
  text-decoration: none;
  font-size: .87rem;
  transition: color .2s;
}

footer ul li a:hover {
  color: var(--teal);
}

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .38);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  section {
    padding: 54px 0;
  }

  .hero {
    padding: 58px 0 48px;
  }

  .hero-mockup {
    display: none;
  }

  .stat-div {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }
}
