/* =================================================================
   COURIER BAZAR — Logistics & Shipping Aggregator
   Global Stylesheet
   -----------------------------------------------------------------
   1.  Design Tokens (CSS Variables)
   2.  Base / Typography
   3.  Utility Classes
   4.  Buttons
   5.  Navbar + Brand
   6.  Hero
   7.  Partner strip / marquee
   8.  Sections & Headings
   9.  Cards (feature / solution / bento / step / testimonial)
   10. Media compositions (framed illustration + floating UI)
   11. Stats / Counters
   12. Integrations / network
   13. Pricing
   14. Forms & Auth
   15. FAQ / Accordion
   16. CTA Banner
   17. Footer
   18. Scroll-to-top + reveal
   19. Animations & micro-interactions
   20. Responsive
   ================================================================= */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   Light, modern SaaS — violet→blue brand with a fresh mint accent
   --------------------------------------------------------------- */
:root {
  --brand: #16130d;
  --brand-600: #221d15;
  --brand-700: #0c0a06;
  --blue: #6b5c45;
  --mint: #4f7a53;
  --mint-600: #3f6343;
  --amber: #b8945f;

  --ink: #16130d;
  --ink-2: #2a251c;
  --body: #5b5648;
  --muted: #9a927f;
  --line: #ece7da;
  --line-2: #e2dccb;
  --surface: #ffffff;
  --surface-alt: #f7f3ea;
  --surface-2: #f1ecdf;
  --surface-3: #eae3d2;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-xs: 0 1px 2px rgba(30, 24, 12, .06);
  --shadow-sm: 0 4px 14px rgba(40, 32, 16, .08);
  --shadow: 0 16px 40px rgba(40, 32, 16, .13);
  --shadow-lg: 0 30px 70px rgba(30, 24, 12, .20);
  --shadow-brand: 0 14px 30px rgba(22, 19, 13, .30);

  --ff-head: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --section-y: 6.5rem;
  --grad: linear-gradient(120deg, #2a251c 0%, #16130d 100%);
  --grad-mint: linear-gradient(120deg, #4f7a53, #6b5c45);
}

/* ---------------------------------------------------------------
   2. BASE / TYPOGRAPHY
   --------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: var(--blue);
}

.lead-muted {
  color: var(--body);
  font-size: 1.12rem;
}

/* ---------------------------------------------------------------
   3. UTILITY CLASSES
   --------------------------------------------------------------- */
.text-brand {
  color: var(--brand) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-mint {
  color: var(--mint) !important;
}

.text-ink {
  color: var(--ink) !important;
}

.text-muted-2 {
  color: var(--muted) !important;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-soft {
  background: var(--surface-alt) !important;
}

.bg-soft-2 {
  background: var(--surface-2) !important;
}

.bg-ink {
  background: var(--ink) !important;
}

.section {
  padding: var(--section-y) 0;
}

.section-sm {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--surface-2);
  padding: .4rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.eyebrow.on-dark {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}

.rule {
  width: 54px;
  height: 4px;
  border-radius: 4px;
  background: var(--grad);
  margin: 0 0 1.25rem;
}

.text-center .rule {
  margin-left: auto;
  margin-right: auto;
}

.rounded-xl {
  border-radius: var(--radius-lg) !important;
}

.dot-grid {
  background-image: radial-gradient(rgba(22, 19, 13, .16) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
}

/* ---------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------- */
.btn {
  --bs-btn-font-family: var(--ff-head);
  font-weight: 600;
  border-radius: 999px;
  padding: .74rem 1.6rem;
  transition: transform .18s ease, box-shadow .22s ease, background-color .2s ease, color .2s ease;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px) scale(.99);
}

.btn-lg {
  padding: .95rem 2.1rem;
  font-size: 1.05rem;
}

.btn-brand {
  background: var(--grad);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-brand);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(22, 19, 13, .42);
}

.btn-mint {
  background: var(--mint);
  color: #fff;
  border: 0;
}

.btn-mint:hover {
  color: #fff;
  background: #0ea875;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(79, 122, 83, .32);
}

.btn-outline-brand {
  background: #fff;
  color: var(--brand);
  border: 1.6px solid var(--line-2);
}

.btn-outline-brand:hover {
  color: var(--brand-700);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-light-brand {
  background: #fff;
  color: var(--brand);
  border: 0;
}

.btn-light-brand:hover {
  color: var(--brand-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.6px solid rgba(255, 255, 255, .5);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--brand);
  transform: translateY(-2px);
}

/* shine sweep */
.btn-brand::after,
.btn-mint::after,
.btn-light-brand::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .4), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
  pointer-events: none;
}

.btn-brand:hover::after,
.btn-mint:hover::after,
.btn-light-brand:hover::after {
  left: 140%;
}

.link-more {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.link-more i {
  transition: transform .2s ease;
}

.link-more:hover {
  color: var(--blue);
}

.link-more:hover i {
  transform: translateX(4px);
}

/* ---------------------------------------------------------------
   5. NAVBAR + BRAND
   --------------------------------------------------------------- */
.navbar-cb {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: .7rem 0;
  transition: box-shadow .25s ease, padding .25s ease, background .25s ease, border-color .25s ease;
}

.navbar-cb.scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
  padding: .45rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.brand-logo {
  height: 60px;
  width: auto;
  display: block;
}

.navbar-cb.scrolled .brand-logo {
  height: 38px;
}

.footer .brand-logo,
.auth-aside .brand-logo {
  content: url("../images/logo-white.png");
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, .18);
  border-radius: 50%;
}

.brand-name {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}

.brand-name .accent {
  color: var(--brand);
}

.navbar-cb .nav-link {
  font-family: var(--ff-head);
  font-weight: 500;
  color: var(--ink-2) !important;
  margin: 0 .1rem;
  padding: .5rem .85rem !important;
  border-radius: 999px;
  position: relative;
  transition: color .2s ease, background-color .2s ease;
}

.navbar-cb .nav-link:hover {
  color: var(--brand) !important;
}

.navbar-cb .nav-link.active {
  color: var(--brand) !important;
  background: var(--surface-2);
}

.navbar-cb .navbar-toggler {
  border: 0;
  padding: .3rem .4rem;
}

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

.nav-cta {
  margin-left: .5rem;
}

/* ---------------------------------------------------------------
   6. HERO
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 9rem 0 5.5rem;
  background:
    radial-gradient(760px 460px at 82% -6%, rgba(107, 92, 69, .16), transparent 60%),
    radial-gradient(680px 460px at 6% 12%, rgba(22, 19, 13, .14), transparent 58%),
    radial-gradient(600px 400px at 60% 116%, rgba(79, 122, 83, .10), transparent 60%),
    var(--surface);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(22, 19, 13, .06) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask: linear-gradient(#000, transparent 70%);
  mask: linear-gradient(#000, transparent 70%);
}

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

.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
}

.hero p.lead {
  color: var(--body);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  padding: .45rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-family: var(--ff-head);
  font-weight: 500;
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.4rem;
}

.hero-badge .pill {
  background: var(--grad);
  color: #fff;
  font-weight: 600;
  font-size: .72rem;
  padding: .12rem .55rem;
  border-radius: 999px;
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-stats .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
}

.hero-stats .lbl {
  font-size: .82rem;
  color: var(--muted);
}

/* ---------------------------------------------------------------
   7. PARTNER STRIP / MARQUEE
   --------------------------------------------------------------- */
.partner-strip {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee .m-item {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.marquee .m-item i {
  color: var(--brand);
  opacity: .7;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------------------------------------------------------------
   8. SECTIONS & HEADINGS
   --------------------------------------------------------------- */
.section-head {
  max-width: 660px;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

.section-head.text-center {
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  position: relative;
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(680px 380px at 84% -20%, rgba(107, 92, 69, .16), transparent 60%),
    radial-gradient(560px 360px at 4% 8%, rgba(22, 19, 13, .13), transparent 58%),
    var(--surface-alt);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
}

.breadcrumb-cb .breadcrumb {
  margin: 0;
}

.breadcrumb-cb .breadcrumb-item a {
  color: var(--muted);
}

.breadcrumb-cb .breadcrumb-item.active {
  color: var(--brand);
}

.breadcrumb-cb .breadcrumb-item+.breadcrumb-item::before {
  color: var(--line-2);
}

/* ---------------------------------------------------------------
   9. CARDS
   --------------------------------------------------------------- */
.card-cb {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card-cb:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}

.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 1.1rem;
  transition: transform .3s cubic-bezier(.2, .7, .2, 1);
}

.card-cb:hover .icon-tile {
  transform: translateY(-3px) rotate(-6deg);
}

.icon-tile.v {
  background: linear-gradient(135deg, #2a251c, #16130d);
}

.icon-tile.b {
  background: linear-gradient(135deg, #7a6a50, #4a3f2f);
}

.icon-tile.m {
  background: linear-gradient(135deg, #6f8a5f, #4f7a53);
}

.icon-tile.d {
  background: linear-gradient(135deg, #2a251c, #0c0a06);
}

.icon-tile.a {
  background: linear-gradient(135deg, #c9a875, #b8945f);
  color: var(--ink);
}

.icon-tile.soft {
  background: var(--surface-2);
  color: var(--brand);
}

.solution-card h3,
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

.solution-card p,
.feature-card p {
  font-size: .96rem;
  margin-bottom: 1rem;
}

/* bento */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.bento .b-cell {
  grid-column: span 1;
}

.bento .b-wide {
  grid-column: span 2;
}

.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform .24s ease, box-shadow .24s ease;
}

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

.bento-card.feat {
  background: var(--grad);
  color: #fff;
  border: 0;
}

.bento-card.feat h3,
.bento-card.feat p {
  color: #fff;
}

.bento-card.dark {
  background: var(--ink);
  color: #fff;
  border: 0;
}

.bento-card.dark h3 {
  color: #fff;
}

.bento-card .blob {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}

/* step */
.step-card {
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  background: var(--grad);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-brand);
}

.step-card h3 {
  font-size: 1.12rem;
}

/* industry chip */
.industry-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.4rem 1.1rem;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.industry-card i {
  font-size: 1.9rem;
  color: var(--brand);
  transition: transform .3s ease, color .2s ease;
}

.industry-card h3 {
  font-size: .98rem;
  margin: .7rem 0 0;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.industry-card:hover i {
  transform: scale(1.14) translateY(-2px);
  color: var(--blue);
}

/* team */
.team-card {
  overflow: hidden;
  text-align: center;
}

.team-photo {
  aspect-ratio: 1/1;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 2.3rem;
}

.team-card .body {
  padding: 1.1rem;
}

.team-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.team-card .role {
  color: var(--brand);
  font-weight: 600;
  font-size: .85rem;
  font-family: var(--ff-head);
}

.team-socials a {
  color: var(--muted);
  margin: 0 .3rem;
  font-size: 1.05rem;
}

.team-socials a:hover {
  color: var(--brand);
}

/* value */
.value-card {
  padding: 1.6rem;
}

.value-card .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
}

/* testimonial */
.testi-card {
  padding: 1.8rem;
}

.testi-card .stars {
  color: var(--amber);
  font-size: .95rem;
  margin-bottom: .8rem;
}

.testi-card blockquote {
  font-size: 1.04rem;
  color: var(--ink-2);
  margin: 0 0 1.2rem;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .95rem;
  transition: transform .3s ease;
}

.testi-card:hover .testi-avatar {
  transform: scale(1.08);
}

.testi-card .name {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  font-size: .95rem;
}

.testi-card .meta {
  font-size: .82rem;
  color: var(--muted);
}

/* timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .4rem;
  bottom: .4rem;
  width: 3px;
  background: var(--grad);
  opacity: .5;
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.72rem;
  top: .3rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--brand);
}

.timeline-item .year {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--brand);
}

.timeline-item h3 {
  font-size: 1.1rem;
  margin: .2rem 0 .3rem;
}

/* ---------------------------------------------------------------
   10. MEDIA COMPOSITIONS
   --------------------------------------------------------------- */
.media-comp {
  position: relative;
  padding: 2.5rem 4.25rem 2.75rem 1.25rem;
}

.media-stage {
  position: relative;
  z-index: 3;
}

.media-frame {
  position: relative;
  z-index: 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
  background: linear-gradient(140deg, #f7f3ea, #efe9db);
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}

.media-frame .illus-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.media-comp:hover .media-frame .illus-fill {
  transform: scale(1.05);
}

.media-splash {
  position: absolute;
  z-index: 1;
  right: -1.75rem;
  top: 44%;
  width: 50%;
  height: auto;
  transform: translateY(-46%);
  opacity: .95;
  pointer-events: none;
  filter: drop-shadow(0 14px 26px rgba(22, 19, 13, .20));
}

.media-dots {
  position: absolute;
  z-index: 4;
  top: -1.1rem;
  right: -1.4rem;
  width: 120px;
  height: 82px;
  background-image: radial-gradient(var(--brand) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: .28;
  pointer-events: none;
}

.media-bracket {
  position: absolute;
  z-index: 4;
  top: -.4rem;
  right: -.3rem;
  width: 108px;
  height: 58px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  border-top-right-radius: 20px;
  opacity: .22;
  pointer-events: none;
}

.badge-float {
  position: absolute;
  z-index: 6;
  top: -1.4rem;
  left: -1.6rem;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--line-2);
  animation: floaty 6.5s ease-in-out infinite;
}

.badge-float .bf-num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1;
}

.badge-float .bf-num.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-float .bf-lbl {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: .25rem;
  line-height: 1.25;
}

.card-float {
  position: absolute;
  z-index: 6;
  right: -1.6rem;
  bottom: -1.4rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  max-width: 240px;
  animation: floaty 7.5s ease-in-out infinite .4s;
}

.card-float .cf-title {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.card-float .rule {
  margin: .55rem 0 0;
  width: 44px;
  height: 3px;
}

.card-float.with-icon {
  display: flex;
  gap: .8rem;
  align-items: center;
  max-width: 262px;
}

.card-float .cf-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

.card-float .cf-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .1rem;
}

.chip-float {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  animation: floaty 7s ease-in-out infinite .3s;
}

.chip-float .cf-ic {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
}

.chip-float .cf-n {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
}

.chip-float .cf-l {
  font-size: .72rem;
  color: var(--muted);
}

.hero-media-wrap {
  position: relative;
}

/* ---------------------------------------------------------------
   11. STATS
   --------------------------------------------------------------- */
.stats-band {
  position: relative;
  overflow: hidden;
  background: var(--grad);
  color: #fff;
  border-radius: var(--radius-xl);
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.stats-band>* {
  position: relative;
  z-index: 2;
}

.stat .num {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  color: #fff;
}

.stat .lbl {
  color: rgba(255, 255, 255, .82);
  margin-top: .4rem;
  font-family: var(--ff-head);
}

/* ---------------------------------------------------------------
   12. INTEGRATIONS / NETWORK
   --------------------------------------------------------------- */
.integration-pill {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .85rem 1.1rem;
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.integration-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--line-2);
}

.integration-pill i {
  color: var(--brand);
  font-size: 1.2rem;
}

/* ---------------------------------------------------------------
   13. PRICING
   --------------------------------------------------------------- */
.price-card {
  padding: 2.1rem 1.85rem;
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 999px;
}

.price-card .price {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--ink);
  font-size: 2.5rem;
}

.price-card .price small {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 500;
}

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

.price-list li {
  padding: .42rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}

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

/* ---------------------------------------------------------------
   14. FORMS & AUTH
   --------------------------------------------------------------- */
.form-control,
.form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-2);
  padding: .78rem 1rem;
  font-size: .98rem;
  color: var(--ink);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(22, 19, 13, .14);
}

.form-label {
  font-family: var(--ff-head);
  font-weight: 500;
  color: var(--ink);
  font-size: .9rem;
}

.input-group-text {
  background: var(--surface-alt);
  border: 1.5px solid var(--line-2);
  border-right: 0;
  color: var(--muted);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.input-group .form-control {
  border-left: 0;
}

.contact-info-card {
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-card .ci-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}

.contact-info-card h3 {
  font-size: 1.02rem;
  margin: 0 0 .2rem;
}

.contact-info-card p {
  margin: 0;
  font-size: .95rem;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 3.5rem;
  background:
    radial-gradient(680px 380px at 88% 4%, rgba(107, 92, 69, .14), transparent 60%),
    radial-gradient(560px 360px at 4% 100%, rgba(22, 19, 13, .12), transparent 60%),
    var(--surface-alt);
}

.auth-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.auth-card .form-side {
  padding: 2.6rem;
}

.auth-aside {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--grad);
}

.auth-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
}

.auth-aside h2,
.auth-aside p,
.auth-aside li {
  color: #fff;
  position: relative;
  z-index: 2;
}

.auth-aside p {
  color: rgba(255, 255, 255, .9);
}

.auth-aside ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.auth-aside li {
  padding: .4rem 0;
  display: flex;
  gap: .6rem;
  align-items: center;
}

.auth-aside li i {
  color: #fff;
}

.auth-metric {
  background: rgba(255, 255, 255, .14);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}

.auth-metric .n {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 1.5rem;
}

.pw-meter {
  height: 6px;
  border-radius: 6px;
  background: var(--line-2);
  overflow: hidden;
  margin-top: .5rem;
}

.pw-meter span {
  display: block;
  height: 100%;
  width: 0;
  transition: width .25s ease, background-color .25s ease;
}

.pw-hint {
  font-size: .8rem;
  margin-top: .35rem;
  color: var(--muted);
}

.password-toggle {
  cursor: pointer;
}

/* ---------------------------------------------------------------
   15. FAQ / ACCORDION
   --------------------------------------------------------------- */
.accordion-cb .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius) !important;
  margin-bottom: .85rem;
  overflow: hidden;
  background: var(--surface);
}

.accordion-cb .accordion-button {
  font-family: var(--ff-head);
  font-weight: 600;
  color: var(--ink);
  padding: 1.15rem 1.35rem;
}

.accordion-cb .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: var(--surface-alt);
  box-shadow: none;
}

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

.accordion-cb .accordion-button::after {
  background-image: none;
  content: "\f4fe";
  font-family: "bootstrap-icons";
  font-size: .9rem;
  transform: none;
  color: var(--brand);
  transition: transform .2s ease;
}

.accordion-cb .accordion-button:not(.collapsed)::after {
  content: "\f63b";
}

.accordion-cb .accordion-body {
  color: var(--body);
  padding: 0 1.35rem 1.25rem;
}

/* ---------------------------------------------------------------
   16. CTA BANNER
   --------------------------------------------------------------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--grad);
  color: #fff;
  padding: 3.75rem;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .10) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
}

.cta-banner>* {
  position: relative;
  z-index: 2;
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

/* ---------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .66);
  padding-top: 4.5rem;
}

.footer .brand-name {
  color: #fff;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  font-family: var(--ff-head);
  margin-bottom: 1.1rem;
}

.footer a {
  color: rgba(255, 255, 255, .66);
}

.footer a:hover {
  color: #fff;
}

.footer .foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .foot-links li {
  padding: .32rem 0;
}

.footer .foot-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer .foot-links i {
  color: #ffffffa8;
  font-size: .8rem;
}

.footer .foot-contact li {
  display: flex;
  gap: .7rem;
  padding: .4rem 0;
  align-items: flex-start;
}

.footer .foot-contact i {
  color: var(--blue);
  margin-top: .2rem;
}

.footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .5rem;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}

.footer .socials a:hover {
  transform: translateY(-3px);
  background: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .10);
  margin-top: 3rem;
  padding: 1.4rem 0;
  font-size: .88rem;
}

/* ---------------------------------------------------------------
   18. SCROLL-TO-TOP + REVEAL
   --------------------------------------------------------------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1030;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: var(--grad);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  cursor: pointer;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  transform: translateY(-3px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------
   19. ANIMATIONS
   --------------------------------------------------------------- */
@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.float-soft {
  animation: floaty 6.5s ease-in-out infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero .hero-badge {
  animation: fadeUp .7s .05s both ease-out;
}

.hero h1 {
  animation: fadeUp .7s .15s both ease-out;
}

.hero .hero-sub {
  animation: fadeUp .7s .28s both ease-out;
}

.hero .hero-actions {
  animation: fadeUp .7s .40s both ease-out;
}

.hero-stats {
  animation: fadeUp .7s .52s both ease-out;
}

.step-card {
  transition: transform .3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float-soft,
  .badge-float,
  .card-float,
  .chip-float,
  .marquee-track {
    animation: none;
  }

  .hero .hero-badge,
  .hero h1,
  .hero .hero-sub,
  .hero .hero-actions,
  .hero-stats {
    animation: none;
  }

  .media-comp:hover .media-frame .illus-fill {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------------------------------------------------------------
   20. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root {
    --section-y: 4.5rem;
  }

  .navbar-cb .navbar-collapse {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: .6rem;
    box-shadow: var(--shadow);
  }

  .nav-cta {
    margin: .6rem 0 0;
    display: inline-block;
  }

  .hero {
    padding: 7.5rem 0 4rem;
  }

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

  .bento .b-wide {
    grid-column: span 2;
  }

  .cta-banner {
    padding: 2.5rem 1.75rem;
  }

  .auth-aside {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .media-comp {
    padding: 2rem 2.5rem 2.25rem 1.5rem;
  }

  .media-splash {
    width: 42%;
    opacity: .85;
    right: -.25rem;
  }

  .card-float {
    right: -.4rem;
    bottom: -.8rem;
    max-width: 176px;
    padding: .7rem .85rem;
  }

  .badge-float {
    width: 92px;
    height: 92px;
    top: -1rem;
    left: -.6rem;
  }

  .badge-float .bf-num {
    font-size: 1.3rem;
  }

  .badge-float .bf-lbl {
    font-size: .5rem;
  }

  .media-dots {
    width: 84px;
    height: 56px;
    right: -.4rem;
  }

  .media-bracket {
    display: none;
  }

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

  .bento .b-wide {
    grid-column: span 1;
  }
}

@media (max-width: 575.98px) {
  .hero-stats {
    gap: 1.4rem;
  }

  .rule {
    margin-left: 0;
  }

  .cta-banner {
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}