:root {
  --navy: #0A1628;
  --steel: #112240;
  --blue: #1A3A6B;
  --accent: #C8A84B;
  --gold2: #E8C96A;
  --white: #F4F6FA;
  --muted: #8A9AB8;
  --light: #D0D8EA;
  --deep: #060E1A;
  --maxw: 1280px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand-title b {
  font-family: 'Outfit', sans-serif;
}

section {
  padding: 88px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

.topbar {
  background: rgba(6, 14, 26, .96);
  color: var(--light);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar strong {
  color: var(--accent);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 22, 40, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-title {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title b {
  color: var(--accent);
  font-size: 26px;
  letter-spacing: 3px;
}

.brand-title span {
  color: var(--light);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 15px;
}

.nav-links a {
  color: var(--light);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  transition: .2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(200, 168, 75, .08);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}

.btn-link:hover {
  color: var(--gold2);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(26, 58, 107, .45), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 75, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 75, .05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
  min-height: 76vh;
  padding: 72px 0;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(42px, 7vw, 48px);
  line-height: 1.2;
  margin: 0 0 20px;
  letter-spacing: .03em;
}

h2 {
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.02;
  margin: 8px 0 14px;
  letter-spacing: .03em;
}

.lead,
.section-head p,
.copy p,
.panel p,
.price-card p,
.step p,
.industry,
.footer p,
.copy li,
.price-card li {
  color: var(--light);
}

.hero p.lead {
  font-size: 19px;
  max-width: 760px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.stat-card {
  background: linear-gradient(180deg, rgba(17, 34, 64, .96), rgba(12, 22, 39, .96));
  border: 1px solid rgba(200, 168, 75, .18);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.stat {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 16px;
  padding: 18px;
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  margin-bottom: 4px;
}

.bar {
  background: var(--steel);
  border-top: 1px solid rgba(200, 168, 75, .18);
  border-bottom: 1px solid rgba(200, 168, 75, .18);
}

.bar .container {
  padding: 18px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.bar-label {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  min-width: 110px;
}

.bar-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(208, 216, 234, .78);
  font-weight: 700;
  letter-spacing: .04em;
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 920px;
  margin-bottom: 34px;
}

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

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

.card,
.price-card,
.panel,
.step {
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 24px;
}

.card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 75, .35);
  box-shadow: var(--shadow);
}

.card,
.price-card {
  transition: .22s ease;
}

.card h3,
.price-card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: .03em;
}

.card p,
.price-card p,
.step p {
  margin: 0 0 18px;
  font-size: 15px;
}

.icon {
  font-size: 30px;
  margin-bottom: 10px;
}

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

.tag {
  border: 1px solid rgba(200, 168, 75, .5);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 16px;
}

.check {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}

.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(200, 168, 75, .15);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote {
  font-size: 22px;
  color: var(--white);
  line-height: 1.45;
  margin: 0 0 20px;
}

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

.num {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(200, 168, 75, .14);
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 12px;
}

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

.industry {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  font-weight: 700;
  letter-spacing: .04em;
}

.cta-band {
  background: linear-gradient(180deg, rgba(17, 34, 64, .96), rgba(6, 14, 26, .98));
  border-top: 1px solid rgba(200, 168, 75, .18);
  border-bottom: 1px solid rgba(200, 168, 75, .18);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.cta-box h2 {
  margin: 0 0 10px;
}

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

.price {
  color: var(--accent);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 4px;
}

.small-note {
  color: var(--muted);
  font-size: 13px;
}

.notice {
  background: rgba(200, 168, 75, .1);
  border: 1px solid rgba(200, 168, 75, .28);
  border-radius: 16px;
  padding: 18px 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 14px;
  color: var(--light);
  margin-bottom: 6px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  color: var(--white);
  font: inherit;
  outline: none;
  transition: .2s;
}

option {
  background: var(--steel);
  color: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, .06);
}

.form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 24px;
  cursor: pointer;
  user-select: none;
}

.form-checkbox-group input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent);
}

border: 1px solid rgba(255, 255, 255, 0.2);
background: rgba(255, 255, 255, 0.05);
}

.form-checkbox-group label {
  font-size: 14px;
  line-height: 1.5;
  color: #a8a5a0;
  margin: 0;
  cursor: pointer;
}

.form-checkbox-group a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.success {
  background: rgba(46, 125, 50, .18);
  border: 1px solid rgba(76, 175, 80, .4);
  color: #c8f7ce;
}

.error {
  background: rgba(176, 48, 48, .18);
  border: 1px solid rgba(176, 48, 48, .45);
  color: #ffd9d9;
}

.footer {
  background: var(--deep);
  border-top: 1px solid rgba(200, 168, 75, .15);
  padding-top: 66px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr .9fr;
  gap: 30px;
  padding-bottom: 34px;
}

.footer h4 {
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: .05em;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 24px 0;
  color: var(--muted);
  font-size: 12.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease;
  opacity: 0.75;
}

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

.footer-bottom-links {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-bottom-right {
  font-weight: 500;
  color: var(--light);
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  background: rgba(6, 14, 26, .98);
  border-top: 1px solid rgba(200, 168, 75, .2);
  padding: 10px;
  gap: 10px;
}

.mobile-cta a {
  flex: 1;
}

@media (max-width: 1024px) {

  .hero .container,
  .split,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries {
    grid-template-columns: repeat(2, 1fr);
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    border-radius: 16px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cards,
  .process,
  .industries {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .stat-card {
    display: none;
  }

  section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 28px, var(--maxw));
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 82px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}


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

.case-card {
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 24px;
}

.case-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.case-meta {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.case-section-title {
  color: var(--white);
  font-weight: 700;
  margin-top: 14px;
  margin-bottom: 6px;
}

.case-card p {
  margin: 0 0 8px;
  color: var(--light);
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.brand-pill {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--light);
  font-weight: 700;
}

@media (max-width:1024px) {

  .case-grid,
  .brand-list {
    grid-template-columns: 1fr;
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--deep);
  border-top: 1px solid rgba(200, 168, 75, .12);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.testimonial-card {
  background: var(--steel);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 30px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: .22s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 64px;
  color: rgba(200, 168, 75, .15);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 168, 75, .3);
  box-shadow: var(--shadow);
}

.testimonial-quote {
  color: var(--light);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 20px;
  padding-top: 24px;
}

.testimonial-attr {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-attr strong {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: .04em;
}

.testimonial-attr span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ── NAVIGATION SERVICES DROPDOWN ── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 8px 0;
}

.nav-dropdown .dropdown-toggle .arrow {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted);
}

.nav-dropdown:hover .dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(17, 34, 64, 0.98);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 0;
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1100;
  backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--light);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 3px solid transparent;
}

.nav-dropdown .dropdown-menu a:hover {
  background: rgba(200, 168, 75, 0.08);
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 24px;
}

/* Dropdown active item */
.nav-dropdown .dropdown-menu a.active {
  color: var(--accent);
  background: rgba(200, 168, 75, 0.05);
  border-left-color: var(--accent);
}

/* Mobile responsive navigation overrides for dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown .dropdown-toggle .arrow {
    font-size: 11px;
  }

  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(200, 168, 75, 0.25);
    border-radius: 0;
    padding: 4px 0 4px 16px;
    margin: 6px 0 6px 8px;
    min-width: unset;
    display: none;
    backdrop-filter: none;
    background: transparent;
  }

  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-dropdown .dropdown-menu a {
    padding: 8px 12px;
    font-size: 14px;
    border-left: none;
  }
  
  .nav-dropdown .dropdown-menu a:hover {
    padding-left: 16px;
    background: transparent;
  }
}

/* ── TRUST BADGES SECTION ── */
.trust-badges-section {
  background: #060e1a;
  border-bottom: 1px solid rgba(200, 168, 75, 0.12);
  padding: 36px 0;
}
.badges-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.badge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.badge-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 168, 75, 0.25);
  background: rgba(200, 168, 75, 0.02);
  box-shadow: 0 6px 25px rgba(200, 168, 75, 0.08);
}
.badge-icon {
  margin-bottom: 12px;
  filter: drop-shadow(0 3px 6px rgba(200, 168, 75, 0.15));
}
.badge-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.badge-desc {
  font-size: 9.5px;
  font-family: var(--body);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PREMIUM BUYER PATH CARDS ── */
.highlight-card {
  position: relative;
  border: 1px solid rgba(200, 168, 75, 0.25) !important;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(200, 168, 75, 0.04)) !important;
  box-shadow: 0 6px 30px rgba(200, 168, 75, 0.08) !important;
}
.highlight-card::before {
  content: "PARTNER PRIORITY";
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent);
  color: var(--navy);
  font-size: 8px;
  font-weight: 800;
  font-family: var(--mono);
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(200, 168, 75, 0.3);
}

.cards-4 .card {
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cards-4 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .badges-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .badge-card {
    width: 100%;
    min-width: unset;
  }
}