:root {
  --navy: #071428;
  --navy-mid: #0c2344;
  --navy-soft: #143056;
  --gold: #c4a574;
  --gold-bright: #d6be94;
  --gold-dim: #a88858;
  --cream: #f4f0e6;
  --paper: #fbfaf7;
  --ink: #152033;
  --muted: #5b6575;
  --line: rgba(12, 35, 68, 0.1);
  --white: #ffffff;
  --success: #1d8a62;
  --shadow: 0 24px 60px rgba(7, 20, 40, 0.12);
  --radius: 18px;
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 14px;
}

.eyebrow i {
  color: var(--gold);
}

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy) !important;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--gold-bright);
  color: var(--navy) !important;
}

.btn-ghost {
  background: transparent;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
}

.btn-navy {
  background: var(--navy);
  color: var(--white) !important;
}

.btn-navy:hover {
  background: var(--navy-soft);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid rgba(7, 20, 40, 0.2) !important;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white) !important;
}

.btn-lg-pill {
  padding: 14px 26px;
}

/* Navbar */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-nav.scrolled,
.site-nav.solid {
  background: rgba(7, 20, 40, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white) !important;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: auto;
  height: 52px;
  border-radius: 0;
  object-fit: contain;
  border: 0;
}

.brand-lockup {
  height: 52px !important;
  width: auto !important;
  max-width: 320px;
  border-radius: 0 !important;
  object-fit: contain !important;
}

.brand > div {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand small {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 2px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright) !important;
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background:
    radial-gradient(1000px 500px at 80% 20%, rgba(201, 162, 39, 0.16), transparent 50%),
    radial-gradient(800px 400px at 10% 80%, rgba(20, 80, 140, 0.35), transparent 50%),
    linear-gradient(160deg, #050d1a 0%, #0b1f3a 55%, #102847 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-team.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  max-width: 42ch;
  margin: 22px 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-meta strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
  font-family: "Fraunces", serif;
}

.hero-shot {
  position: relative;
  z-index: 1;
}

.hero-shot a,
.hero-shot img {
  display: block;
}

.hero-shot img {
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-frame {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.product-frame img {
  width: 100%;
  transition: transform 0.5s ease;
}

.product-frame:hover img {
  transform: scale(1.02);
}

.frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 20, 40, 0.72));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 18px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.frame-overlay i {
  color: var(--gold-bright);
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dce8a;
  box-shadow: 0 0 0 4px rgba(61, 206, 138, 0.2);
}

.assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.assurance-item {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
}

.assurance-item i {
  color: var(--gold-dim);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 10px;
}

.assurance-item h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
  margin-bottom: 6px;
}

.assurance-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.module-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.module-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.module-chip i {
  color: var(--gold-dim);
}

.accordion-item {
  border: 1px solid var(--line) !important;
  margin-bottom: 10px;
  border-radius: 14px !important;
  overflow: hidden;
  background: var(--white);
}

.accordion-button:not(.collapsed) {
  background: rgba(201, 162, 39, 0.08);
  color: var(--navy);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.hero-shot::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px 20%;
  height: 140px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.45), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.float-chip {
  position: absolute;
  background: rgba(7, 20, 40, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  box-shadow: var(--shadow);
}

.float-chip i {
  color: var(--gold);
  font-size: 1.2rem;
}

.chip-1 {
  left: -18px;
  bottom: 18%;
}

.chip-2 {
  right: -10px;
  top: 12%;
}

/* Sections */
.section {
  padding: 35px 0;
}
  
.section-tight {
  padding: 72px 0;
}

.section-dark {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  max-width: 18ch;
}

.section-copy {
  color: var(--muted);
  max-width: 48ch;
}

/* Trust */
.trust-row {
  background: #0a1b33;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.trust-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.trust-item {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item i {
  color: var(--gold);
}

/* Feature cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 162, 39, 0.4);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-dim);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Split */
.split-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 360px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink);
}

.check-list i {
  color: var(--gold-dim);
  margin-top: 3px;
}

/* Process */
.process-step {
  position: relative;
  padding: 8px 8px 8px 0;
}

.step-num {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

/* Stats */
.stat-card {
  text-align: center;
  padding: 12px;
}

.stat-card .num {
  font-family: "Fraunces", serif;
  font-size: 2.8rem;
  color: var(--gold-bright);
  line-height: 1;
}

.stat-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

/* Testimonials */
.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  border: 1px solid var(--line);
}

.quote-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.quote-card p {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 18px 0;
}

.quote-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
}

/* Pricing */
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
}

.price-card.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
}

.price-card.featured h3,
.price-card.featured .amount {
  color: var(--white);
}

.price-card .amount {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
}

.price-card .amount small {
  font-size: 0.95rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--muted);
  font-weight: 600;
}

.price-card.featured .amount small {
  color: rgba(255, 255, 255, 0.6);
}

.badge-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.price-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.price-list i {
  color: var(--gold);
}

.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.billing-toggle button {
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
}

.billing-toggle button.active {
  background: var(--navy);
  color: var(--white);
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(120deg, rgba(7, 20, 40, 0.86), rgba(12, 35, 68, 0.78)),
    url("../images/office.jpg") center/cover no-repeat;
  color: var(--white);
  border-radius: 28px;
  padding: 64px 48px;
}

.cta-band h2 {
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #050d1a;
  color: rgba(255, 255, 255, 0.68);
  padding: 64px 0 24px;
}

.site-footer h5 {
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
}

.site-footer a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding-top: 18px;
  font-size: 0.85rem;
}

/* Page hero */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  background:
    linear-gradient(160deg, #050d1a, #0c2344);
  color: var(--white);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
}

/* Forms */
.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  background: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}

.form-label {
  font-weight: 650;
  font-size: 0.88rem;
}

.contact-card {
  background: var(--white);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.info-tile {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  height: 100%;
}

.info-tile i {
  font-size: 1.4rem;
  color: var(--gold-dim);
}

/* Login */
.login-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--navy);
}

.login-visual {
  background:
    linear-gradient(160deg, rgba(5, 13, 26, 0.35), rgba(7, 20, 40, 0.72)),
    url("../images/analytics.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.login-panel {
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.login-box {
  width: 100%;
  max-width: 420px;
}

.alert-menai {
  display: none;
  border-radius: 12px;
}

/* Toast */
.toast-menai {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  display: none;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s ease forwards;
}

.reveal-d1 { animation-delay: 0.1s; }
.reveal-d2 { animation-delay: 0.2s; }
.reveal-d3 { animation-delay: 0.35s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in {
  opacity: 1;
  transform: none;
}

/* Feature detail rows */
.feature-detail {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-detail:last-child {
  border-bottom: 0;
}

/* Map placeholder */
.map-frame {
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(7, 20, 40, 0.55), rgba(7, 20, 40, 0.2)),
    url("../images/office.jpg") center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

/* Team */
.team-photo {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-photo img {
  width: 100%;
  height: 420px;
  /* object-fit: cover; */
  object-position: top;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: calc(var(--header-h) + 28px);
    text-align: left;
  }

  .chip-1,
  .chip-2 {
    display: none;
  }

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

  .login-wrap {
    grid-template-columns: 1fr;
  }

  .login-visual {
    min-height: 240px;
  }

  .cta-band {
    padding: 40px 24px;
  }

  .navbar-collapse {
    background: rgba(7, 20, 40, 0.98);
    margin-top: 12px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
}
