/* ============================================================
   PAGES.CSS — Shared styles for all service detail pages
   ============================================================ */
:root {
  --page-accent: #0A2647;
  --page-accent-light: #144272;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--page-accent-light, #144272) 100%);
  padding: 80px 0 100px;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.phb-circle {
  position: absolute; border-radius: 50%;
  background: rgba(212,175,55,0.05); border: 1px solid rgba(212,175,55,0.1);
}
.phb-circle.c1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.phb-circle.c2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }
.phb-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.page-hero-text {}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 16px;
}
.page-breadcrumb a { color: var(--gold); font-weight: 500; }
.page-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.14); color: var(--gold);
  border: 1px solid rgba(212,175,55,0.32);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.12;
  color: var(--white); margin-bottom: 16px;
}
.page-hero h1 .gold { color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7;
  max-width: 540px; margin-bottom: 32px;
}
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.page-hero-icon-wrap {
  width: 200px; height: 200px; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 32px; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.page-hero-icon-wrap::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 32px; padding: 1px;
  background: linear-gradient(135deg, rgba(212,175,55,0.5), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.page-hero-icon-wrap svg { width: 96px; height: 96px; }
.page-hero-stats {
  display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap;
}
.ph-stat { }
.ph-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1;
}
.ph-stat-num span { color: var(--gold); }
.ph-stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.45); margin-top: 4px; font-weight: 500; }
.page-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.page-hero-wave svg { display: block; }

/* ===== SECTION STYLES ===== */
.page-section { padding: 90px 0; }
.page-section.alt { background: var(--gray-50, #f5f7fa); }
.page-section.dark { background: var(--navy); }

.page-section-header { text-align: center; margin-bottom: 56px; }
.page-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); margin-bottom: 12px;
}
.page-section-header h2 .gold { color: var(--gold); }
.page-section.dark .page-section-header h2 { color: var(--white); }
.page-section-header p { color: var(--gray-600, #4b5563); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.page-section.dark .page-section-header p { color: rgba(255,255,255,0.6); }
.ps-tag {
  display: inline-flex; align-items: center;
  background: rgba(212,175,55,0.12); color: var(--gold);
  border: 1px solid rgba(212,175,55,0.28);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.products-grid.two { grid-template-columns: repeat(2,1fr); }
.products-grid.three { grid-template-columns: repeat(3,1fr); }

.product-card {
  background: var(--white); border-radius: 20px;
  padding: 32px 24px; border: 1.5px solid #e5e9f0;
  transition: all 0.3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--page-color, #0A2647), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.product-card:hover { border-color: transparent; box-shadow: 0 12px 44px rgba(10,38,71,0.13); transform: translateY(-4px); }
.product-card:hover::after { transform: scaleX(1); }
.product-card.featured {
  background: var(--navy); border-color: var(--navy);
  box-shadow: 0 12px 44px rgba(10,38,71,0.25);
}
.product-card.featured h3 { color: var(--white); }
.product-card.featured p { color: rgba(255,255,255,0.65); }
.product-card.featured .pc-link { color: var(--gold); }
.pc-badge-wrap { display: flex; justify-content: space-between; align-items: flex-start; }
.pc-badge {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 100px;
  background: var(--gold); color: var(--navy-dark);
}
.pc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.product-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy); }
.product-card p { font-size: 0.87rem; color: var(--gray-600,#4b5563); line-height: 1.65; flex: 1; }
.pc-features { display: flex; flex-direction: column; gap: 7px; }
.pc-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--gray-600,#4b5563);
}
.pc-feature::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.product-card.featured .pc-feature { color: rgba(255,255,255,0.7); }
.pc-price { font-size: 0.8rem; color: var(--gray-400,#9ca3af); }
.pc-price strong { font-size: 1.2rem; color: var(--navy); font-weight: 800; }
.product-card.featured .pc-price strong { color: var(--gold); }
.product-card.featured .pc-price { color: rgba(255,255,255,0.4); }
.pc-link {
  color: var(--navy); font-weight: 600; font-size: 0.85rem;
  display: flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.pc-link:hover { gap: 10px; color: var(--gold); }

/* ===== PROCESS STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 32px; left: 64px; right: 64px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 800; color: var(--navy);
  margin: 0 auto 16px; box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}
.page-section.alt .step-num { background: var(--white); }
.step-icon { font-size: 1.6rem; margin-bottom: 8px; }
.step-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.82rem; color: var(--gray-600,#4b5563); line-height: 1.6; }

/* ===== FEATURES LIST ===== */
.features-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.features-list { display: flex; flex-direction: column; gap: 22px; }
.feature-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: 14px; background: var(--white);
  border: 1.5px solid #e5e9f0; transition: all 0.25s;
}
.feature-row:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(212,175,55,0.1); }
.fr-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.fr-body h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.fr-body p { font-size: 0.82rem; color: var(--gray-600,#4b5563); line-height: 1.6; }
.features-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light, #144272));
  border-radius: 24px; padding: 40px; min-height: 420px;
  display: flex; flex-direction: column; justify-content: center; gap: 20px;
  position: relative; overflow: hidden;
}
.features-visual::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(212,175,55,0.1); border: 1px solid rgba(212,175,55,0.2);
}
.fv-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.fv-sub { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 16px; }
.fv-stat-row { display: flex; flex-direction: column; gap: 14px; }
.fv-stat { }
.fv-stat-label { display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.fv-stat-label span:last-child { color: var(--gold); font-weight: 700; }
.fv-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.fv-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), #e8c84a); }
.fv-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.fv-badge {
  padding: 6px 14px; border-radius: 8px;
  background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.25);
  color: var(--gold); font-size: 0.72rem; font-weight: 600;
}

/* ===== RATES TABLE ===== */
.rates-table-wrap { overflow-x: auto; border-radius: 16px; border: 1.5px solid #e5e9f0; }
.rates-table { width: 100%; border-collapse: collapse; background: var(--white); }
.rates-table thead { background: var(--navy); }
.rates-table th { padding: 16px 20px; text-align: left; color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.rates-table th:first-child { color: var(--gold); }
.rates-table td { padding: 14px 20px; border-bottom: 1px solid #e5e9f0; font-size: 0.88rem; color: var(--gray-800,#1f2937); }
.rates-table tr:last-child td { border-bottom: none; }
.rates-table tr:hover td { background: var(--gray-50,#f5f7fa); }
.rate-val { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.rate-badge-green { color: #10b981; font-weight: 700; font-size: 0.78rem; }
.rate-badge-gold { color: var(--gold); font-weight: 700; font-size: 0.78rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid #e5e9f0; border-radius: 12px; overflow: hidden; background: var(--white); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 0.92rem; color: var(--navy);
  gap: 16px; transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-50,#f5f7fa); }
.faq-q-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; flex-shrink: 0; transition: all 0.25s;
}
.faq-item.open .faq-q-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 0.88rem; color: var(--gray-600,#4b5563); line-height: 1.75; }
.faq-item.open .faq-answer { display: block; }

/* ===== PAGE CTA ===== */
.page-cta {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-light,#144272));
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.page-cta::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.1); top: -150px; right: -100px; }
.page-cta-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.page-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem,3vw,2.6rem); font-weight: 800; color: var(--white); margin-bottom: 14px; }
.page-cta h2 .gold { color: var(--gold); }
.page-cta p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 520px; margin: 0 auto 36px; }
.page-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE FOOTER MINI ===== */
.page-footer-mini {
  background: var(--navy-dark,#061a30); padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.page-footer-mini .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.page-footer-mini span { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.pf-links { display: flex; gap: 20px; }
.pf-links a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.pf-links a:hover { color: var(--gold); }

/* ===== HIGHLIGHT BAND ===== */
.highlight-band { background: var(--gold); padding: 20px 0; }
.hb-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.hb-text { font-weight: 700; color: var(--navy-dark); font-size: 0.95rem; }
.hb-text span { opacity: 0.7; font-weight: 400; font-size: 0.85rem; }

/* ===== APP SCREENSHOTS ===== */
.app-showcase { display: flex; gap: 24px; justify-content: center; align-items: flex-end; flex-wrap: wrap; margin: 48px 0; }
.app-phone {
  width: 200px; background: var(--navy);
  border-radius: 28px; padding: 10px;
  box-shadow: 0 24px 60px rgba(10,38,71,0.4);
  border: 2px solid rgba(255,255,255,0.1);
}
.app-phone.center { width: 220px; transform: translateY(-20px); }
.app-screen {
  background: linear-gradient(145deg, #0d2137, #1a3a5c);
  border-radius: 20px; overflow: hidden;
  height: 380px; display: flex; flex-direction: column;
  padding: 16px; gap: 10px;
}
.app-phone.center .app-screen { height: 420px; }
.app-screen-bar { height: 32px; background: rgba(212,175,55,0.1); border-radius: 8px; }
.app-screen-bal {
  text-align: center; padding: 16px 0;
}
.app-screen-bal-label { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: uppercase; }
.app-screen-bal-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.app-screen-bal-num span { color: var(--gold); font-size: 1rem; }
.app-screen-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.app-tile { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 12px 10px; text-align: center; border: 1px solid rgba(255,255,255,0.08); }
.app-tile-icon { font-size: 1.2rem; margin-bottom: 4px; }
.app-tile-label { font-size: 0.62rem; color: rgba(255,255,255,0.5); }
.app-screen-list { display: flex; flex-direction: column; gap: 8px; }
.app-list-item { display: flex; align-items: center; gap: 8px; padding: 8px; background: rgba(255,255,255,0.04); border-radius: 8px; }
.app-list-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.app-list-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.app-list-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.app-list-line.short { width: 60%; }
.app-list-amt { font-size: 0.7rem; font-weight: 700; }

/* ===== SECURITY BADGES ===== */
.security-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.sec-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px; text-align: center;
  transition: all 0.25s;
}
.sec-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(212,175,55,0.3); }
.sec-icon { font-size: 2.2rem; margin-bottom: 14px; }
.sec-card h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.sec-card p { color: rgba(255,255,255,0.5); font-size: 0.8rem; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .features-two-col { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: repeat(2,1fr); }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-icon-wrap { display: none; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .products-grid.two { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 60px 0 80px; }
  .page-cta-btns { flex-direction: column; align-items: center; }
  .app-showcase { gap: 12px; }
  .app-phone { width: 160px; }
  .app-phone.center { width: 180px; transform: none; }
}

/* ============================================================
   SCROLL REVEAL SYSTEM
   ============================================================ */
.sr-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.68s cubic-bezier(0.4,0,0.2,1),
              transform 0.68s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.sr-item.sr-left  { transform: translateX(-34px); }
.sr-item.sr-right { transform: translateX(34px); }
.sr-item.sr-scale { transform: scale(0.88); }
.sr-item.sr-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   HERO DECORATIVE ANIMATIONS
   ============================================================ */
@keyframes page-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  40%       { transform: translateY(-16px) rotate(1.5deg); }
  70%       { transform: translateY(-8px) rotate(-1deg); }
}
.page-hero-icon-wrap { animation: page-float 6s ease-in-out infinite; }

@keyframes circle-breathe {
  0%, 100% { transform: scale(1);    opacity: 0.45; }
  50%       { transform: scale(1.12); opacity: 0.75; }
}
.phb-circle.c1 { animation: circle-breathe 9s ease-in-out infinite; }
.phb-circle.c2 { animation: circle-breathe 7s ease-in-out infinite 1.5s; }

/* Extra floating orbs added by JS */
@keyframes orb-drift {
  0%         { transform: translate(0, 0)   rotate(0deg); }
  33%        { transform: translate(12px, -18px) rotate(60deg); }
  66%        { transform: translate(-8px, -10px) rotate(120deg); }
  100%       { transform: translate(0, 0)   rotate(180deg); }
}
.page-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(212,175,55,0.06); border: 1px solid rgba(212,175,55,0.12);
  animation: orb-drift linear infinite;
}

/* ============================================================
   FEATURED CARD SHIMMER
   ============================================================ */
@keyframes shimmer-pass {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.product-card.featured {
  position: relative; overflow: hidden;
}
.product-card.featured::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(90deg,
    transparent 0%, rgba(212,175,55,0.08) 48%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer-pass 3.5s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.product-card.featured > * { position: relative; z-index: 1; }

/* ============================================================
   STEP NUMBER GLOW PULSE
   ============================================================ */
@keyframes step-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,175,55,0.2); }
  50%       { box-shadow: 0 4px 32px rgba(212,175,55,0.55), 0 0 0 6px rgba(212,175,55,0.08); }
}
.step-num { animation: step-glow 3s ease-in-out infinite; }

/* ============================================================
   STEPS LINE GLOW
   ============================================================ */
@keyframes line-shimmer {
  0%   { background-position: -100% 0; }
  100% { background-position:  200% 0; }
}
.steps-grid::before {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0.2) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  animation: line-shimmer 4s ease-in-out infinite;
}

/* ============================================================
   SECTION HEADER ANIMATED UNDERLINE
   ============================================================ */
.page-section-header h2 { position: relative; display: inline-block; }
.page-section-header h2::after {
  content: '';
  display: block; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px; margin-top: 6px;
  transition: width 0.9s cubic-bezier(0.4,0,0.2,1) 0.3s;
}
.sr-visible .page-section-header h2::after,
.page-section-header.sr-visible h2::after { width: 80px; }

/* ============================================================
   FEATURE ROW LEFT ACCENT
   ============================================================ */
.feature-row { position: relative; overflow: hidden; }
.feature-row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.3));
  border-radius: 14px 0 0 14px;
  transition: width 0.25s ease;
}
.feature-row:hover::before { width: 3px; }

/* ============================================================
   CTA SECTION ANIMATED GRADIENT
   ============================================================ */
@keyframes cta-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.page-cta {
  background: linear-gradient(-45deg,
    var(--navy-dark), #0f2d52, #144272, #0a1e35);
  background-size: 300% 300%;
  animation: cta-shift 10s ease infinite;
}

/* ============================================================
   COUNTER ANIMATED NUMBER
   ============================================================ */
.ph-stat-num {
  display: inline-block;
  transition: transform 0.1s ease;
}

/* ============================================================
   PROGRESS BAR ANIMATED FILL
   ============================================================ */
.fv-fill {
  transition: width 1.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   SCROLL INDICATOR BOUNCE (hero bottom arrow hint)
   ============================================================ */
@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(6px); opacity: 1; }
}
.page-scroll-hint { animation: bounce-hint 1.8s ease-in-out infinite; }
