/* ==========================================================================
   PARTNER — Premium Business Listing Platform
   ========================================================================== */

:root {
  --navy-950: #060e21;
  --navy-900: #0b1b3a;
  --navy-800: #122452;
  --navy-700: #17306b;
  --cobalt-600: #1f4fd8;
  --cobalt-500: #3465ef;
  --cobalt-400: #5f88ff;
  --ice-100: #eef2fb;
  --ice-050: #f7f9fd;
  --white: #ffffff;
  --gold-500: #c9a24b;
  --gold-400: #e0bd6f;
  --gold-300: #f0d79a;
  --ink-700: #2c3550;
  --ink-500: #5b6584;
  --ink-300: #8b93ab;
  --success-500: #2fae74;

  --grad-navy-mesh:
    radial-gradient(
      circle at 15% 20%,
      rgba(52, 101, 239, 0.35),
      transparent 45%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(201, 162, 75, 0.25),
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(31, 79, 216, 0.3),
      transparent 50%
    ),
    linear-gradient(
      160deg,
      var(--navy-950) 0%,
      var(--navy-900) 55%,
      var(--navy-800) 100%
    );
  --grad-gold: linear-gradient(
    120deg,
    var(--gold-400) 0%,
    var(--gold-500) 60%,
    var(--gold-400) 100%
  );
  --grad-cobalt: linear-gradient(
    120deg,
    var(--cobalt-600) 0%,
    var(--cobalt-400) 100%
  );

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, sans-serif;

  --shadow-soft: 0 10px 30px -12px rgba(11, 27, 58, 0.18);
  --shadow-lift: 0 20px 50px -15px rgba(11, 27, 58, 0.28);
  --shadow-gold: 0 12px 28px -10px rgba(201, 162, 75, 0.45);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --nav-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink-700);
  background-color: var(--ice-050);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
::selection {
  background: var(--gold-400);
  color: var(--navy-950);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   VIDEO PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-950);
  overflow: hidden;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preloader-brand {
  position: relative;
  z-index: 1;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}
.preloader-brand .brand-glyph--lg {
  box-shadow: 0 0 60px rgba(201, 162, 75, 0.5);
}
@keyframes preloaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}
.preloader.video-ready .preloader-brand {
  display: none;
}

body.is-preloading {
  overflow: hidden;
  height: 100vh;
}

@media (prefers-reduced-motion: reduce) {
  .preloader-brand {
    animation: none;
  }
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */
h1,
h2,
h3,
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--navy-900);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
  display: inline-block;
  position: relative;
  padding-left: 34px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--grad-gold);
}
.section-eyebrow--center {
  padding-left: 0;
}
.section-eyebrow--center::before {
  display: none;
}

.section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.text-accent-gold {
  color: var(--gold-500);
  font-style: italic;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--ink-500);
  line-height: 1.7;
}

.section-body {
  color: var(--ink-500);
  line-height: 1.8;
  font-size: 1rem;
}

.section-pad {
  padding: clamp(64px, 9vw, 128px) 0;
}

/* ==========================================================================
   BRAND MARK / LOGO
   ========================================================================== */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
}
.brand-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad-navy-mesh);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  box-shadow: var(--shadow-soft);
}
.brand-glyph--lg {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  font-size: 2.5rem;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.5);
}
.brand-glyph--sm {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.9rem;
  box-shadow: none;
}
.brand-word {
  color: var(--navy-900);
}
.premium-navbar .brand-word {
  color: var(--navy-900);
}
.premium-navbar.is-scrolled .brand-word,
.premium-navbar .brand-word {
  transition: color 0.3s ease;
}

.hero-logo-badge {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--grad-gold);
  z-index: 2000;
  transition: width 0.1s ease-out;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.premium-navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(247, 249, 253, 0.7);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid rgba(11, 27, 58, 0.06);
  transition: all 0.35s ease;
  z-index: 1500;
}
.premium-navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.nav-link {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-700) !important;
  position: relative;
  padding: 0.5rem 0.85rem !important;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover {
  color: var(--cobalt-600) !important;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--cobalt-600) !important;
}
.nav-link.active::after {
  transform: scaleX(1);
}

.btn-nav-cta {
  background: var(--navy-900);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  border: none;
  transition: all 0.3s ease;
}
.btn-nav-cta:hover {
  background: var(--grad-cobalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  color: var(--navy-900);
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 14, 33, 0.88) 0%,
      rgba(11, 27, 58, 0.82) 45%,
      rgba(6, 14, 33, 0.94) 100%
    ),
    var(--grad-navy-mesh);
  mix-blend-mode: multiply;
  background-color: rgba(6, 14, 33, 0.75);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.hero-eyebrow {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--white);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title-accent {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: rgba(238, 242, 251, 0.85);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn-hero-primary {
  background: var(--grad-gold);
  color: var(--navy-950) !important;
  font-weight: 700;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-gold);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(201, 162, 75, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  font-weight: 700;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500) !important;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-950) !important;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem clamp(1.25rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}
.hero-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(238, 242, 251, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 575.98px) {
  .hero-stat-divider {
    display: none;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ==========================================================================
   GLASS PANEL UTILITY
   ========================================================================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  background: var(--ice-050);
}

.mini-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.mini-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.mini-feature i {
  font-size: 1.5rem;
  color: var(--cobalt-600);
  margin-top: 3px;
}
.mini-feature-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.mini-feature-text {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.55;
}

.about-visual {
  position: relative;
}
.about-visual-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}
.about-visual-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.85);
}
.about-visual-card i {
  color: var(--gold-500);
  font-size: 1.6rem;
}
.about-visual-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-900);
}
.about-visual-card span {
  font-size: 0.78rem;
  color: var(--ink-500);
}
@media (max-width: 991.98px) {
  .about-visual-card {
    left: 12px;
    bottom: -20px;
  }
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-section {
  background: var(--ice-100);
  position: relative;
}

.step-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2.25rem;
  height: 100%;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 27, 58, 0.05);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.step-card--featured {
  background: var(--grad-navy-mesh);
  color: var(--white);
  transform: scale(1.03);
}
.step-card--featured .step-title {
  color: var(--white);
}
.step-card--featured .step-text {
  color: rgba(238, 242, 251, 0.8);
}
.step-card--featured .step-number {
  color: rgba(255, 255, 255, 0.16);
}
.step-card--featured .step-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-400);
}
@media (max-width: 767.98px) {
  .step-card--featured {
    transform: none;
  }
}

.step-number {
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 600;
  color: rgba(11, 27, 58, 0.06);
  line-height: 1;
}
.step-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--ice-100);
  color: var(--cobalt-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1.4rem;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.step-text {
  color: var(--ink-500);
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   WHY CHOOSE PARTNER — FEATURE CARDS
   ========================================================================== */
.why-section {
  background: var(--ice-050);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  height: 100%;
  border: 1px solid rgba(11, 27, 58, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: transparent;
}
.feature-card i {
  font-size: 1.7rem;
  color: var(--white);
  background: var(--grad-cobalt);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.1rem;
}
.feature-card h3 {
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   GET THE APP SECTION
   ========================================================================== */
.app-download-section {
  position: relative;
  background: var(--grad-navy-mesh);
  padding: clamp(72px, 10vw, 140px) 0;
  overflow: hidden;
}



.app-download-grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.app-download-section .container {
  position: relative;
  z-index: 1;
}

.app-download-eyebrow {
  color: var(--gold-400);
}

.app-download-title {
  color: var(--white);
}

.app-download-lead {
  color: rgba(238, 242, 251, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.app-download-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.app-download-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(238, 242, 251, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.app-download-perks i {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1.75rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1.3rem 0.65rem 1.1rem;
  color: var(--white) !important;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.app-store-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--gold-400);
  transform: translateY(-3px);
}
.app-store-badge i {
  font-size: 1.7rem;
  color: var(--gold-400);
}
.app-store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--font-display);
  text-decoration: none;
}
.app-store-badge-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 242, 251, 0.65);
}

.app-download-rating {
  display: flex;
  align-items: start;
  gap: 10px;
  color: rgba(238, 242, 251, 0.8);
  font-size: 0.9rem;
  flex-direction: column;
}
.app-download-stars {
  color: var(--gold-400);
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Phone mockup, built entirely from HTML/CSS — no image asset required */
.app-phone-stage {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.app-phone {
  border-radius: 34px;
  background: linear-gradient(160deg, #1a2b52, #0c1730);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.55);
}

.app-phone--back {
  position: absolute;
  inset: 0 -10px 20px 30px;
  opacity: 0.35;
  transform: rotate(6deg);
  filter: blur(1px);
  z-index: 0;
}

.app-phone--front {
  position: relative;
  z-index: 1;
  padding: 14px;
  animation: phoneFloat 5s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.app-phone-notch {
  width: 70px;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 12px;
}

.app-phone-screen {
  background: var(--ice-050);
  border-radius: 22px;
  padding: 16px 14px 20px;
  min-height: 400px;
}

.app-mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.app-mock-header i {
  margin-left: auto;
  color: var(--ink-300);
  font-size: 1rem;
}

.app-mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(11, 27, 58, 0.08);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  color: var(--ink-300);
  margin-bottom: 14px;
}

.app-mock-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 14px;
  padding: 0.7rem;
  margin-bottom: 10px;
  box-shadow: var(--shadow-soft);
}
.app-mock-card-thumb {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--grad-cobalt);
}
.app-mock-card-thumb--gold {
  background: var(--grad-gold);
}
.app-mock-card-thumb--blue {
  background: linear-gradient(135deg, #2fae74, #1f4fd8);
}
.app-mock-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy-900);
  margin-bottom: 2px;
}
.app-mock-card span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--ink-500);
}
.app-mock-card span i {
  color: var(--cobalt-500);
  font-size: 0.72rem;
}

.app-phone-badge-float {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-lift);
  animation: badgeFloat 5s ease-in-out infinite;
  animation-delay: 0.3s;
}
.app-phone-badge-float i {
  color: var(--gold-500);
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .app-download-lead {
    max-width: 100%;
  }
  .app-phone-stage {
    margin-top: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .app-store-badges {
    flex-direction: column;
  }
  .app-store-badge {
    width: 100%;
    justify-content: center;
  }
  .app-phone-stage {
    max-width: 280px;
  }
  .app-phone-screen {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-phone--front,
  .app-phone-badge-float {
    animation: none;
  }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section {
  background: var(--ice-100);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 3px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.testimonial-card--featured {
  border-top: 3px solid var(--gold-500);
  background: linear-gradient(180deg, #fff 0%, var(--ice-050) 100%);
}
.testimonial-stars {
  color: var(--gold-500);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-style: italic;
  color: var(--ink-700);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ice-100);
}
.testimonial-author strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ink-300);
}

/* ==========================================================================
   FAQ / ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--ice-050);
}

.premium-accordion .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 0.85rem;
}
.premium-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy-900);
  background: var(--white);
  border-radius: var(--radius-md) !important;
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}
.premium-accordion .accordion-button:not(.collapsed) {
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow-lift);
}
.premium-accordion .accordion-button:focus {
  box-shadow: var(--shadow-soft);
  border: none;
}
.premium-accordion .accordion-button::after {
  filter: none;
  background-size: 1.1rem;
}
.premium-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.premium-accordion .accordion-body {
  color: var(--ink-500);
  font-size: 0.94rem;
  line-height: 1.7;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -6px;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   BUSINESS REVIEWS SECTION
   ========================================================================== */
.reviews-section {
  background: var(--ice-100);
}

.scroll-reviews-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
  padding: 0;
}
.scroll-reviews-track {
  display: flex;
  flex-direction: column;
  animation: scrollReviews 22s linear infinite;
  padding: 1.5rem;
}
.scroll-reviews-wrap:hover .scroll-reviews-track {
  animation-play-state: paused;
}

@keyframes scrollReviews {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

.mini-review {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
}
.mini-review img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.mini-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mini-review-top strong {
  font-size: 0.9rem;
  color: var(--navy-900);
}
.mini-stars {
  color: var(--gold-500);
  font-size: 0.72rem;
  letter-spacing: 1px;
}
.mini-review p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-500);
  line-height: 1.5;
}

.scroll-fade-top,
.scroll-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 2;
}
.scroll-fade-top {
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), transparent);
}
.scroll-fade-bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9), transparent);
}

.review-form-panel {
  padding: 2.25rem;
  height: 100%;
}
.review-form-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.review-form-sub {
  color: var(--ink-500);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.premium-input {
  border: 1.5px solid rgba(11, 27, 58, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.94rem;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
}
.premium-input:focus {
  border-color: var(--cobalt-500);
  box-shadow: 0 0 0 4px rgba(52, 101, 239, 0.12);
  background: var(--white);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.4rem;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.6rem;
  color: var(--ink-300);
}
.star-input {
  cursor: pointer;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}
.star-input:hover {
  transform: scale(1.15);
}
.star-input.is-selected {
  color: var(--gold-500);
}
.star-input.is-selected::before {
  content: "\f586";
}
.star-rating-value {
  margin-left: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-500);
  font-family: var(--font-body);
}

.form-success-msg {
  margin-top: 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--success-500);
  min-height: 1.2em;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: var(--ice-050);
}

.contact-info-panel,
.contact-form-panel {
  padding: 2.25rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-cobalt);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.contact-info-item p {
  font-size: 0.9rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}
.contact-info-item a {
  color: var(--ink-500);
}
.contact-info-item a:hover {
  color: var(--cobalt-600);
}

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 1.75rem;
}
.contact-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.contact-socials a:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
  transform: translateY(-3px);
}

.map-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-300);
  background:
    linear-gradient(rgba(11, 27, 58, 0.03), rgba(11, 27, 58, 0.03)),
    repeating-linear-gradient(
      45deg,
      rgba(31, 79, 216, 0.04) 0 2px,
      transparent 2px 14px
    );
}
.map-placeholder i {
  font-size: 2.6rem;
  color: var(--cobalt-400);
}
.map-placeholder p {
  font-weight: 600;
  margin: 0;
  color: var(--ink-500);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: var(--grad-navy-mesh);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.1;
  mix-blend-mode: overlay;
}
.cta-banner-title {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner-text {
  color: rgba(238, 242, 251, 0.8);
  margin-bottom: 2rem;
  position: relative;
}
.btn-cta-banner {
  background: var(--grad-gold);
  color: var(--navy-950) !important;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  box-shadow: var(--shadow-gold);
  position: relative;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-cta-banner:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 50px -10px rgba(201, 162, 75, 0.6);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: rgba(238, 242, 251, 0.7);
  padding: 72px 0 28px;
}
.brand-mark--footer {
  margin-bottom: 1rem;
}
.brand-mark--footer .brand-word {
  color: var(--white);
}
.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(238, 242, 251, 0.6);
  max-width: 320px;
}
.contact-socials--footer a {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.contact-socials--footer a:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
}

.footer-heading {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: rgba(238, 242, 251, 0.65);
  transition: color 0.25s ease;
}
.footer-links a:hover {
  color: var(--gold-400);
}
.footer-links i {
  color: var(--gold-500);
  margin-right: 6px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(238, 242, 251, 0.55);
}
.footer-legal a {
  color: rgba(238, 242, 251, 0.55);
  margin: 0 4px;
}
.footer-legal a:hover {
  color: var(--gold-400);
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  z-index: 1400;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--grad-gold);
  color: var(--navy-950);
}

/* ==========================================================================
   RIPPLE EFFECT (CTA buttons)
   ========================================================================== */
.ripple {
  position: relative;
  overflow: hidden;
}
.ripple-circle {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rippleAnim 0.65s ease-out;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}
@keyframes rippleAnim {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
  }
  .btn-nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .back-to-top {
    width: 44px;
    height: 44px;
    right: 18px;
    bottom: 18px;
  }
  .scroll-reviews-wrap {
    height: 400px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .scroll-reviews-track {
    animation: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}