/* ============================================================
   ON SPOT HUB LLC — Global Stylesheet
   Premium Business Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2040;
  --navy-lite: #1E3A5F;
  --gold:      #C9A84C;
  --gold-lite: #E8C96A;
  --gold-pale: #F5E9C8;
  --white:     #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100:  #F1F3F7;
  --gray-200:  #E4E8F0;
  --gray-400:  #9BA5B4;
  --gray-600:  #5A6678;
  --gray-800:  #2C3545;
  --success:   #22C55E;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
  --shadow:    0 8px 32px rgba(10,22,40,.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,.18);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
p  { color: var(--gray-600); line-height: 1.75; }

.lead { font-size: 1.2rem; color: var(--gray-600); max-width: 640px; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Gold Divider ── */
.gold-line {
  display: inline-block;
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.45); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 18px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.badge-gold { background: var(--gold-pale); color: var(--gold); }
.badge-navy { background: rgba(10,22,40,.08); color: var(--navy); }
.badge-success { background: rgba(34,197,94,.1); color: #16a34a; }

/* ── Section Labels ── */
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ──────────────────────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.navbar.scrolled .navbar-inner { padding: 14px 24px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  font-family: var(--font-head);
}
.nav-logo .logo-text { color: var(--white); }
.nav-logo .logo-text strong { display: block; font-size: 1rem; font-weight: 700; letter-spacing: .5px; }
.nav-logo .logo-text span { display: block; font-size: .68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); opacity: .9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  border-radius: 0;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(201,168,76,.1); color: var(--gold); padding-left: 26px; }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ──────────────────────────────────────────────────────────
   HERO SECTIONS
────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 50%, #102040 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 40%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(30,58,95,.6) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title .gold { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.15rem; max-width: 580px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label { font-size: .8rem; color: rgba(255,255,255,.6); letter-spacing: .5px; margin-top: 4px; }

.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero-card-title { color: var(--white); font-size: .9rem; font-weight: 600; }
.hero-metric { text-align: right; }
.hero-metric .value { color: var(--gold); font-size: 1.8rem; font-weight: 700; font-family: var(--font-head); display: block; }
.hero-metric .change { color: var(--success); font-size: .8rem; }

.metric-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; margin-top: 8px; overflow: hidden; }
.metric-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-lite)); border-radius: 3px; }

.hero-badge-float {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
}
.hero-badge-float .icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero-badge-float .text strong { color: var(--white); font-size: .9rem; display: block; }
.hero-badge-float .text span { color: rgba(255,255,255,.55); font-size: .78rem; }

/* Page Hero (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,168,76,.07) 0%, transparent 60%);
}
.page-hero .hero-grid { opacity: .5; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: rgba(255,255,255,.35); }

/* ──────────────────────────────────────────────────────────
   CARDS
────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,168,76,.3); }

.card-body { padding: 32px; }

.service-card { text-align: left; }
.service-card .icon-wrap {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  border-color: var(--gold);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .9rem; margin-bottom: 20px; }
.service-card .card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: .875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .card-link:hover { gap: 10px; }

/* Stats card */
.stat-card {
  text-align: center;
  padding: 40px 24px;
}
.stat-card .number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.stat-card .number .suffix { color: var(--gold); }
.stat-card .label { color: var(--gray-600); font-size: .9rem; margin-top: 8px; }

/* Team card */
.team-card { text-align: center; }
.team-card .avatar {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-family: var(--font-head);
  color: var(--navy-lite);
  font-weight: 700;
}
.team-card .card-body { padding: 24px; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: .875rem; font-weight: 600; margin-bottom: 12px; display: block; }
.team-card p { font-size: .85rem; }
.team-card .social { display: flex; gap: 8px; justify-content: center; margin-top: 16px; }
.team-card .social a {
  width: 32px; height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--gray-600);
  transition: var(--transition);
}
.team-card .social a:hover { background: var(--gold); color: var(--navy); }

/* Testimonial card */
.testimonial-card { padding: 40px 36px; }
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card .author { display: flex; align-items: center; gap: 14px; }
.testimonial-card .author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-card .author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-card .author span { font-size: .8rem; color: var(--gray-400); }

/* Blog card */
.blog-card { overflow: hidden; }
.blog-card .thumb {
  height: 220px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-400);
  overflow: hidden;
  position: relative;
}
.blog-card .thumb-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-lite));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: .85;
}
.blog-card .card-body { padding: 28px; }
.blog-card .meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .78rem;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.blog-card .meta .cat { color: var(--gold); font-weight: 600; }
.blog-card h4 { margin-bottom: 10px; font-size: 1.1rem; }
.blog-card h4 a:hover { color: var(--gold); }
.blog-card p { font-size: .875rem; margin-bottom: 16px; }

/* Pricing card */
.pricing-card { text-align: center; padding: 0; }
.pricing-card.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold), var(--shadow-lg); }
.pricing-card .plan-header {
  padding: 36px 36px 28px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card.featured .plan-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-bottom-color: rgba(255,255,255,.1);
}
.pricing-card.featured .plan-header h3 { color: var(--white); }
.pricing-card.featured .plan-header .price { color: var(--gold-lite); }
.pricing-card.featured .plan-header .price-period { color: rgba(255,255,255,.55); }
.pricing-card .plan-badge { margin-bottom: 12px; }
.pricing-card h3 { margin-bottom: 20px; }
.pricing-card .price { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-card .price-period { font-size: .875rem; color: var(--gray-400); margin-top: 4px; }
.pricing-card .plan-features {
  padding: 28px 36px 36px;
}
.pricing-card .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.pricing-card .plan-features li:last-child { border-bottom: none; }
.pricing-card .plan-features li .check { color: var(--success); font-size: .9rem; flex-shrink: 0; }
.pricing-card .plan-features li .cross { color: var(--gray-200); font-size: .9rem; flex-shrink: 0; }

/* ──────────────────────────────────────────────────────────
   SECTIONS — SPECIFIC
────────────────────────────────────────────────────────── */

/* ── Online-only badge ── */
.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.3);
  color: #22c55e;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.online-badge .dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}

/* ── Channel cards ── */
.channel-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.channel-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.channel-card .ch-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin: 0 auto 18px;
}
.channel-card h4 { margin-bottom: 8px; }
.channel-card p { font-size:.875rem; margin-bottom: 18px; }
.channel-card .ch-action { color: var(--gold); font-weight: 700; font-size: .875rem; display:block; }

/* Trust bar */
.trust-bar {
  padding: 28px 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: .875rem;
  font-weight: 500;
}
.trust-item .ti-icon { color: var(--gold); font-size: 1.1rem; }

/* Partners / logos */
.logos-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .5px;
  transition: var(--transition);
  white-space: nowrap;
}
.logo-item:hover { color: var(--navy); }

/* Features list */
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--gray-600);
}
.feature-list .f-icon {
  width: 24px; height: 24px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process steps */
.process-steps { counter-reset: steps; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--gray-200);
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: 8px; }

/* Dark section */
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 700px 500px at 90% 50%, rgba(201,168,76,.06) 0%, transparent 60%);
}
.section-dark .section-content { position: relative; z-index: 2; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.65); }
.section-dark .section-label { color: var(--gold); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(201,168,76,.08) 0%, transparent 60%);
}
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.65); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: var(--gold-pale); }
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--gray-600);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--gold); color: var(--navy); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }
.faq-answer p { font-size: .9rem; }

/* Contact form */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Contact info */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.ci-content strong { display: block; color: var(--navy); font-size: .9rem; margin-bottom: 4px; }
.ci-content p { font-size: .875rem; }

/* Portfolio */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.portfolio-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.portfolio-thumb {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-thumb { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.95) 0%, rgba(10,22,40,.4) 60%, transparent 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); margin-bottom: 6px; }
.portfolio-overlay p { color: rgba(255,255,255,.7); font-size: .875rem; margin-bottom: 16px; }

/* Table */
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: .875rem;
  font-weight: 600;
}
.comparison-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.comparison-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: var(--gray-600); }
.comparison-table tr:hover td { background: var(--gray-100); }
.comparison-table .check { color: var(--success); font-size: 1rem; }
.comparison-table .cross { color: var(--gray-300); }

/* ──────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand p { font-size: .875rem; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }

.footer-col h5 { color: var(--white); margin-bottom: 20px; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   UTILITIES
────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }
.text-navy { color: var(--navy); }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-640 { max-width: 640px; }
.max-780 { max-width: 780px; }

/* Divider */
hr.divider { border: none; border-top: 1px solid var(--gray-200); margin: 0; }

/* Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Notification bar */
.notif-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  color: var(--navy);
  text-align: center;
  padding: 10px 24px;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 1001;
}
.notif-bar a { text-decoration: underline; color: var(--navy); }

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lite));
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 999;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ──────────────────────────────────────────────────────────
   ADVANCED ANIMATIONS
────────────────────────────────────────────────────────── */

/* ── Particle canvas (hero background) ── */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .55;
}

/* ── Typed text cursor ── */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── Gradient headline ── */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lite) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shimmer button ── */
.btn-shimmer { position: relative; overflow: hidden; }
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-15deg);
  animation: shimmer 2.5s ease infinite;
}
@keyframes shimmer { 0%{left:-100%} 60%,100%{left:160%} }

/* ── Glow button ── */
.btn-glow {
  box-shadow: 0 0 0 0 rgba(201,168,76,.5);
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50% { box-shadow: 0 0 20px 6px rgba(201,168,76,.25); }
}

/* ── 3D card tilt ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .15s ease, box-shadow .15s ease;
  will-change: transform;
}
.tilt-card:hover { box-shadow: 0 30px 60px rgba(10,22,40,.25); }

/* ── Stagger fade-in variants ── */
.fade-in-up    { opacity:0; transform:translateY(40px); transition:opacity .7s ease, transform .7s ease; }
.fade-in-left  { opacity:0; transform:translateX(-40px); transition:opacity .7s ease, transform .7s ease; }
.fade-in-right { opacity:0; transform:translateX(40px); transition:opacity .7s ease, transform .7s ease; }
.fade-in-scale { opacity:0; transform:scale(.92); transition:opacity .6s ease, transform .6s ease; }
.fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible, .fade-in-scale.visible {
  opacity:1; transform:none;
}

/* ── Animated gradient border ── */
.grad-border {
  position: relative;
  border-radius: var(--radius-lg);
}
.grad-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-lite), transparent);
  background-size: 300% 300%;
  animation: border-rotate 4s linear infinite;
  z-index: -1;
}
@keyframes border-rotate { 0%{background-position:0% 50%} 100%{background-position:300% 50%} }

/* ── Floating animation ── */
.float { animation: float 4s ease-in-out infinite; }
.float-slow { animation: float 6s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out infinite 1s; }
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  width: 0%;
  z-index: 10000;
  transition: width .1s linear;
}

/* ── Section reveal lines ── */
.section-reveal {
  position: relative;
  overflow: hidden;
}
.section-reveal::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 1.2s ease;
}
.section-reveal.visible::before { width: 100%; }

/* ── Ripple on click ── */
.ripple { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transform: scale(0);
  animation: ripple-anim .6s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ── Counter number animation ── */
.counter-highlight {
  display: inline-block;
  transition: transform .3s ease, color .3s ease;
}
.counter-highlight.bumped { transform: scale(1.15); color: var(--gold); }

/* ── Marquee (infinite scroll strip) ── */
.marquee-container {
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.marquee-item {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  transition: var(--transition);
  padding: 0 8px;
}
.marquee-item:hover { color: var(--navy); }

/* ── Hero particles orbit rings ── */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
  animation: orbit-spin linear infinite;
  pointer-events: none;
}
@keyframes orbit-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── Animated stat cards ── */
.stat-card-animated .number-wrap {
  position: relative;
  display: inline-block;
}
.stat-card-animated .number-wrap::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s ease .3s;
}
.stat-card-animated.visible .number-wrap::after { transform: scaleX(1); }

/* ── Morphing gradient background ── */
.morph-bg {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f3c 50%, #0a1a30 100%);
  background-size: 300% 300%;
  animation: morph-gradient 8s ease infinite;
}
@keyframes morph-gradient {
  0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%}
}

/* ── Text highlight underline ── */
.text-highlight {
  display: inline;
  background-image: linear-gradient(var(--gold-pale), var(--gold-pale));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 35%;
  transition: background-size .5s ease;
  padding-bottom: 2px;
}
.visible .text-highlight, .text-highlight:hover { background-size: 100% 35%; }

/* ── Page loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader-hex {
  width: 60px; height: 60px;
  animation: loader-spin 1.5s ease-in-out infinite;
}
@keyframes loader-spin {
  0%{transform:rotate(0deg) scale(1)} 50%{transform:rotate(180deg) scale(1.1)} 100%{transform:rotate(360deg) scale(1)}
}
.loader-bar {
  width: 160px; height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lite));
  border-radius: 2px;
  animation: loader-progress 1.2s ease forwards;
}
@keyframes loader-progress { 0%{width:0%} 100%{width:100%} }

/* ──────────────────────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .cta-banner { padding: 48px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .logos-strip { justify-content: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
