/* ===================================================
   RISE FINANCIAL SERVICES — styles.css
   Rebuilt for perfect UX/UI & full responsiveness
   =================================================== */

/* ===== DESIGN TOKENS ===== */
:root {
  --navy:        #0B1C35;
  --navy-mid:    #122240;
  --navy-light:  #1E3A6A;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A07830;
  --gold-glow:   rgba(201,168,76,0.25);
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-gray:  #F2F0EC;
  --mid-gray:    #DDD9D2;
  --text-dark:   #111827;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --success:     #16A34A;
  --error:       #DC2626;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.18);

  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --nav-h:      72px;
  --container:  1160px;
  --gutter:     clamp(16px, 4vw, 28px);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.2; }
.gold { color: var(--gold); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.12);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.section-h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}
.section-header .section-h2 { margin-bottom: 0; }
.section-cta { text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .22s, border-color .22s, transform .18s, box-shadow .22s, color .22s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
  min-height: 48px;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,.38); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,28,53,.3); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.38); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn:active { transform: translateY(0) !important; }
.w-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.nav-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,28,53,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.18);
  transition: box-shadow .3s, background .3s;
}
.nav-header.scrolled {
  background: rgba(11,28,53,1);
  box-shadow: 0 4px 28px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--white);
  line-height: 1.1; letter-spacing: 2.5px;
}
.logo-text span {
  display: block;
  font-size: 9.5px;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Desktop nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  transition: color .2s;
  padding: 8px 14px;
  position: relative;
  border-radius: 6px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { padding: 9px 20px !important; font-size: 13.5px !important; min-height: 40px !important; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
  min-width: 44px; min-height: 44px;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 75% 45%, rgba(201,168,76,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(30,58,106,.5) 0%, transparent 45%);
}
.hero-bg-pattern::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: min(500px, 80vw); height: min(500px, 80vw);
  border: 1px solid rgba(201,168,76,.08);
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.3);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.5); }
}
.hero-h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 12px;
  border-radius: 20px;
}
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-right { display: flex; justify-content: flex-end; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
}
.hero-card-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  padding-bottom: .875rem;
  border-bottom: 2px solid var(--gold);
}
.form-group { margin-bottom: 1rem; }
.form-group label, .quick-form label {
  display: block;
  font-size: 11.5px; font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.quick-form input, .quick-form select,
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
  min-height: 44px;
}
.quick-form select, .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.quick-form input:focus, .quick-form select:focus,
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 11.5px; color: var(--text-muted); margin-top: .75rem; line-height: 1.5; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: rgba(255,255,255,.35);
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  z-index: 1; pointer-events: none;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(255,255,255,.28);
  border-bottom: 1.5px solid rgba(255,255,255,.28);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity:.4; }
  50% { transform: rotate(45deg) translateY(5px); opacity:.9; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: clamp(24px, 4vw, 40px) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 8px clamp(12px, 2vw, 24px);
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; height: 80%; width: 1px;
  background: rgba(201,168,76,.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus { font-size: .6em; color: var(--gold-light); }
.stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,.52);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.problem-left p { color: var(--text-body); margin-bottom: 1rem; font-size: 16px; line-height: 1.78; }
.problem-left .btn { margin-top: .75rem; }
.compare-table {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
}
.compare-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: var(--navy);
  padding: 13px 18px; gap: 8px;
}
.compare-header div { font-size: 11px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.55); }
.compare-them { color: rgba(255,255,255,.45) !important; }
.compare-us { color: var(--gold) !important; }
.compare-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--mid-gray);
  align-items: center; gap: 8px;
}
.compare-row:last-child { border-bottom: none; }
.compare-feature { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.compare-x, .compare-check { text-align: center; font-size: 13px; font-weight: 600; }
.compare-x { color: var(--error); }
.compare-check { color: var(--success); }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--mid-gray);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card.featured { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(201,168,76,.25), var(--shadow-md); }
.service-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px;
  white-space: nowrap; letter-spacing: .5px;
}
.service-icon {
  width: 54px; height: 54px;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 1.25rem; flex-shrink: 0;
}
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: .75rem; color: var(--text-dark); }
.service-card p { font-size: 14px; color: var(--text-body); line-height: 1.72; margin-bottom: 1rem; flex: 1; }
.service-detail {
  font-size: 11.5px; font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201,168,76,.08);
  padding: 5px 10px; border-radius: 6px;
  display: inline-block; margin-bottom: 1rem;
}
.service-link {
  font-size: 14px; font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color .2s;
  display: inline-block;
}
.service-link:hover { color: var(--gold-dark); }

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--navy); }
.how-section .section-tag { background: rgba(201,168,76,.14); color: var(--gold-light); }
.how-section .section-h2 { color: var(--white); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
}
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  height: 100%;
}
.step-number {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700;
  color: rgba(201,168,76,.2);
  line-height: 1; margin-bottom: 1rem;
}
.step-card h3 { color: var(--white); font-size: 18px; margin-bottom: .75rem; }
.step-card p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.72; }
.step-docs { margin-top: 1rem; display: flex; flex-direction: column; gap: 5px; }
.step-docs span {
  font-size: 12px; color: var(--gold-light);
  background: rgba(201,168,76,.1);
  padding: 4px 10px; border-radius: 5px;
  display: inline-block;
}
.step-connector {
  display: flex; align-items: flex-start;
  padding-top: 3.5rem;
  padding-inline: 12px;
}
.step-connector svg { color: rgba(201,168,76,.38); width: 28px; height: 28px; flex-shrink: 0; }

/* ===== TRUST SECTION ===== */
.trust-section { background: var(--light-gray); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.trust-left p { font-size: 16px; color: var(--text-body); line-height: 1.78; margin-bottom: 1.5rem; }
.trust-items { display: flex; flex-direction: column; gap: 1.5rem; }
.trust-item-row { display: flex; gap: 1rem; align-items: flex-start; }
.trust-icon {
  width: 28px; height: 28px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}
.trust-item-row strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 3px; font-family: var(--font-body); }
.trust-item-row p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.eligibility-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
}
.eligibility-box h3 {
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
}
.eligibility-list { display: flex; flex-direction: column; gap: .75rem; }
.elig-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.elig-item.yes { color: var(--text-body); }
.elig-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(22,163,74,.1);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* ===== CASE STUDIES ===== */
.case-section { background: var(--white); }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--mid-gray);
  transition: box-shadow .3s, transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.case-industry { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold-dark); margin-bottom: .5rem; }
.case-amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 1rem; line-height: 1; }
.case-story { font-size: 14px; color: var(--text-body); line-height: 1.72; margin-bottom: 1.25rem; flex: 1; }
.case-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.case-meta span { font-size: 11px; font-weight: 600; background: rgba(11,28,53,.07); color: var(--navy-light); padding: 4px 10px; border-radius: 5px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-top: 1px solid rgba(201,168,76,.18);
  border-bottom: 1px solid rgba(201,168,76,.18);
  padding: clamp(48px, 7vw, 72px) 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.cta-banner h2 { font-size: clamp(20px, 3vw, 34px); color: var(--white); font-weight: 700; margin-bottom: .5rem; line-height: 1.25; }
.cta-banner p { color: rgba(255,255,255,.62); font-size: 16px; }
.cta-banner-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: #060E1C; padding: clamp(40px, 6vw, 64px) 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.48); line-height: 1.72; margin-top: 1rem; max-width: 290px; }
.logo-light .logo-text strong { color: var(--white); }
.footer-social { display: flex; gap: 10px; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 { font-family: var(--font-body); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.52); margin-bottom: .625rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.52); margin-bottom: .75rem; line-height: 1.55; }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.52); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-bottom span { font-size: 12.5px; color: rgba(255,255,255,.32); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.32); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.68); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 998;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 56px) 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,.07) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700; color: var(--white);
  margin-bottom: 1rem; line-height: 1.15;
}
.page-hero p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.68);
  max-width: 560px; margin: 0 auto; line-height: 1.65;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.48);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.28); }

/* ===== SERVICES PAGE ===== */
.service-detail-section { padding: clamp(56px, 8vw, 96px) 0; }
.service-detail-section:nth-child(odd) { background: var(--off-white); }
.service-detail-section:nth-child(even) { background: var(--white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.service-detail-content h2 { font-size: clamp(28px, 3.5vw, 38px); margin-bottom: 1rem; }
.service-detail-content p { font-size: 15px; color: var(--text-body); line-height: 1.78; margin-bottom: 1rem; }
.service-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 1.5rem 0;
}
.highlight-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  padding: .875rem 1rem; text-align: center;
}
.highlight-value { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; color: var(--navy); line-height: 1; }
.highlight-label { font-size: 11px; color: var(--text-muted); margin-top: 5px; text-transform: uppercase; letter-spacing: .5px; }
.use-cases-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
}
.use-cases-box h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.use-case-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: .75rem; font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.55; }
.use-case-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.use-cases-divider { margin: 1.5rem 0; padding-top: 1.5rem; border-top: 1px solid rgba(201,168,76,.2); }

/* ===== ABOUT PAGE ===== */
.mission-section { background: var(--white); padding: clamp(56px, 8vw, 96px) 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.mission-content p { font-size: 16px; line-height: 1.8; color: var(--text-body); margin-bottom: 1rem; }
.mission-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 2rem; }
.value-card { background: var(--off-white); border-radius: var(--radius-sm); padding: 1.25rem; border-left: 3px solid var(--gold); }
.value-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: .3rem; font-family: var(--font-body); }
.value-card p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.55; }
.about-visual { background: var(--navy); border-radius: var(--radius-xl); padding: clamp(1.75rem, 3vw, 2.5rem); color: var(--white); }
.about-visual .stat-big { font-family: var(--font-display); font-size: clamp(40px, 5vw, 56px); font-weight: 700; color: var(--gold); line-height: 1; }
.about-visual .stat-desc { font-size: 14px; color: rgba(255,255,255,.58); margin-bottom: 1.75rem; margin-top: 4px; }
.team-section { background: var(--off-white); padding: clamp(56px, 8vw, 96px) 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2rem); text-align: center; border: 1px solid var(--mid-gray); transition: box-shadow .3s, transform .3s; }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--navy); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--gold); border: 3px solid var(--gold); }
.team-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--navy); }
.team-role { font-size: 13px; color: var(--gold-dark); font-weight: 600; margin-bottom: .75rem; }
.team-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 720px; margin: 0 auto; }
.location-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; }
.location-card.primary { border: 2px solid var(--gold); }
.location-card.secondary { border: 1px solid var(--mid-gray); }
.location-badge { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .75rem; }
.location-card h3 { font-size: 20px; color: var(--navy); margin-bottom: .5rem; }
.location-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.location-hours { font-size: 13px; color: var(--text-muted); }

/* ===== RESULTS PAGE ===== */
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.result-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--mid-gray); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.result-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.result-header { background: var(--navy); padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.result-header .case-industry { color: rgba(255,255,255,.58); font-size: 11px; }
.result-header .case-amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.result-body { padding: clamp(1.25rem, 3vw, 2rem); }
.result-body p { font-size: 14px; color: var(--text-body); line-height: 1.75; margin-bottom: 1.25rem; }
.result-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.result-stat { text-align: center; }
.result-stat .val { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--navy); line-height: 1; }
.result-stat .lbl { font-size: 11px; color: var(--text-muted); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* ===== CONTACT PAGE ===== */
.contact-section { background: var(--off-white); padding: clamp(56px, 8vw, 96px) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 1rem; }
.contact-info > p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 1.5rem; }
.contact-detail-icon { width: 44px; height: 44px; min-width: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.contact-detail h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; font-family: var(--font-body); }
.contact-detail p { font-size: 15px; color: var(--text-dark); margin: 0; line-height: 1.55; }
.contact-detail a { font-size: 15px; color: var(--navy); font-weight: 500; }
.contact-detail a:hover { color: var(--gold-dark); }
.hours-list { margin-top: .5rem; }
.hours-list p { font-size: 13px; color: var(--text-muted); margin-bottom: 3px; }
.response-box { margin-top: 2rem; padding: 1.25rem; background: rgba(201,168,76,.07); border: 1px solid rgba(201,168,76,.28); border-radius: var(--radius-sm); }
.response-box-title { font-size: 11px; font-weight: 700; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; }
.contact-form-box { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); border: 1px solid var(--mid-gray); box-shadow: var(--shadow-sm); }
.contact-form-box h3 { font-size: 22px; margin-bottom: 1.5rem; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-promise { font-size: 12.5px; color: var(--text-muted); text-align: center; margin-top: 1rem; line-height: 1.6; }
.map-section iframe { width: 100%; height: 380px; border: none; display: block; }
.quick-contact-strip { background: var(--navy); padding: clamp(32px, 5vw, 44px) 0; }
.quick-contact-strip-inner { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); padding: clamp(56px, 8vw, 96px) 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.faq-item { background: var(--off-white); border-radius: var(--radius-sm); padding: 1.5rem; border: 1px solid var(--mid-gray); transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-xs); }
.faq-item h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: .5rem; font-family: var(--font-body); line-height: 1.4; }
.faq-item p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s cubic-bezier(.25,.46,.45,.94), transform .62s cubic-bezier(.25,.46,.45,.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
  .hero-right { justify-content: center; }
  .hero-card { max-width: 100%; }
  .problem-grid, .trust-grid, .mission-grid { grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3rem); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .step-connector { justify-content: center; padding: 8px 0; transform: rotate(90deg); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(201,168,76,.18); padding-top: 20px; margin-top: 8px; }
}

/* ===== MOBILE NAV (≤860px) ===== */
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: #09162B;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 3rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(201,168,76,.25);
    margin-left: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 18px;
    font-weight: 500;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    color: rgba(255,255,255,.82);
    display: block;
    width: 100%;
  }
  .nav-links a::after { display: none !important; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.active { color: var(--gold); }
  .hamburger { display: flex; }
  .nav-cta { display: none !important; }
}

/* ===== MOBILE (≤768px) ===== */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero-h1 { font-size: clamp(30px, 8vw, 42px); }
  .hero-trust-chips { display: none; }
  .hero-scroll-hint { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .compare-row { padding: 10px 14px; }
  .compare-header { padding: 10px 14px; }
  .compare-feature { font-size: 12.5px; }
  .compare-x, .compare-check { font-size: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-btns { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .mission-values { grid-template-columns: 1fr; }
  .service-highlights { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 0; }
  .results-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== SMALL MOBILE (≤480px) ===== */
@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .cta-banner-btns { flex-direction: column; width: 100%; }
  .cta-banner-btns .btn { width: 100%; }
  .team-grid { grid-template-columns: 1fr; }
  .quick-contact-strip-inner { flex-direction: column; }
  .quick-contact-strip-inner .btn { width: 100%; }
  .result-stats { gap: 1rem; }
  .result-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ===== UTILITY ===== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Transparent PNG — no background needed */
  background: transparent;
  /* Slight drop shadow for contrast on light/dark */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
  transition: filter 0.2s;
}
.logo:hover .logo-img {
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.45));
}
.logo-icon { display: none !important; } /* hide letter fallback */
.logo-text { display: none !important; } /* hide text fallback — full logo in image */

/* ===== FOOTER SOCIAL - EXTENDED ===== */
.footer-social-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  transition: all .2s;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.06);
  white-space: nowrap;
}
.social-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.12); }
.social-btn.instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color:#fff; }
.social-btn.facebook:hover { background: #1877F2; border-color: transparent; color: #fff; }
.social-btn.linkedin:hover { background: #0A66C2; border-color: transparent; color: #fff; }
.social-btn.whatsapp-btn:hover { background: #25D366; border-color: transparent; color: #fff; }

/* ===== MOBILE NAV — ensure hamburger always shows on mobile ===== */
@media (max-width: 860px) {
  .logo-img { height: 42px; }
}
@media (max-width: 480px) {
  .logo-img { height: 36px; }
  .footer-social-banner { gap: 6px; }
  .social-btn { font-size: 11px; padding: 6px 10px; }
}
