/*============================================================================
  VGF PayHub — Modern Fintech Design System
============================================================================*/

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --ph-primary: #4f46e5;
  --ph-primary-600: #4338ca;
  --ph-primary-700: #3730a3;
  --ph-violet: #7c3aed;
  --ph-accent: #06b6d4;
  --ph-accent-soft: #ecfeff;
  --ph-gold: #f59e0b;
  --ph-green: #10b981;
  --ph-red: #ef4444;

  --ph-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 55%, #a855f7 100%);
  --ph-gradient-soft: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  --ph-gradient-accent: linear-gradient(135deg, #06b6d4 0%, #4f46e5 100%);

  --ph-dark: #0f172a;
  --ph-darker: #0b1120;
  --ph-body: #334155;
  --ph-muted: #64748b;
  --ph-light: #f8fafc;
  --ph-border: #e2e8f0;

  --ph-white: #ffffff;

  --ph-radius-sm: 0.5rem;
  --ph-radius: 1rem;
  --ph-radius-lg: 1.5rem;
  --ph-radius-xl: 2rem;

  --ph-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --ph-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --ph-shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
  --ph-shadow-glow: 0 12px 40px rgba(79, 70, 229, 0.35);

  --ph-font-heading: "Space Grotesk", sans-serif;
  --ph-font-body: "Plus Jakarta Sans", sans-serif;

  --ph-header-h: 76px;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--ph-header-h) + 12px);
}

body {
  font-family: var(--ph-font-body);
  color: var(--ph-body);
  background: var(--ph-white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ph-font-heading);
  color: var(--ph-dark);
  font-weight: 600;
  line-height: 1.25;
}

a {
  color: var(--ph-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ph-violet);
}

img {
  max-width: 100%;
}

section {
  padding: 88px 0;
  overflow: hidden;
  position: relative;
}

::selection {
  background: var(--ph-primary);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #eef2f7;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--ph-primary), var(--ph-violet));
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Utility helpers
--------------------------------------------------------------*/
.bg-light-soft {
  background: var(--ph-light);
}

.bg-gradient {
  background: var(--ph-gradient);
}

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

.section-pad {
  padding: 88px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.rounded-4 {
  border-radius: var(--ph-radius) !important;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--ph-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.preloader-logo img {
  height: 50px;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

.preloader-bar {
  width: 180px;
  height: 4px;
  border-radius: 4px;
  background: #e2e8f0;
  overflow: hidden;
  position: relative;
}

.preloader-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  border-radius: 4px;
  background: var(--ph-gradient);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderSlide {
  0% { left: -50%; }
  100% { left: 100%; }
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 995;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ph-gradient);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  box-shadow: var(--ph-shadow-glow);
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: #fff;
}

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

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
#topbar {
  background: var(--ph-darker);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  position: relative;
  z-index: 1;
}

#topbar a {
  color: #cbd5e1;
  transition: color 0.3s;
}

#topbar a:hover {
  color: #fff;
}

#topbar .contact-info i {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

#topbar .contact-info i::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 8px;
}

#topbar .contact-info i:first-child::before {
  display: none;
}

#topbar .social-links a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  margin-left: 8px;
  transition: background 0.3s, transform 0.3s;
}

#topbar .social-links a:hover {
  background: var(--ph-gradient);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: sticky;
  top: 0;
  z-index: 997;
  height: var(--ph-header-h);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.4s ease;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--ph-shadow-sm);
}

/* backdrop-filter traps fixed-position descendants (the mobile menu overlay),
   so it must be disabled while the mobile menu is open */
#header.nav-menu-open,
#header:has(.navbar-mobile) {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.mobile-nav-open {
  overflow: hidden;
}

#header .logo img {
  max-height: 45px;
  transition: transform 0.3s ease;
}

#header .logo:hover img {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar > ul > li {
  position: relative;
  padding: 0 4px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ph-dark);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar a i {
  font-size: 0.7rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--ph-primary);
  background: rgba(79, 70, 229, 0.06);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--ph-gradient);
  color: #fff;
  padding: 10px 22px;
  margin-left: 14px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: var(--ph-shadow-glow);
  position: relative;
  overflow: hidden;
}

.navbar .getstarted::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.navbar .getstarted:hover {
  color: #fff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
}

.navbar .getstarted:hover::after {
  left: 100%;
}

.navbar .dropdown > a {
  position: relative;
}

.navbar .dropdown > a i {
  transition: transform 0.3s ease;
}

.navbar .dropdown:hover > a i {
  transform: rotate(180deg);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  margin: 0;
  padding: 10px;
  min-width: 240px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  box-shadow: var(--ph-shadow-lg);
  transition: all 0.3s ease;
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a,
.navbar .dropdown ul a:focus {
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ph-body);
  border-radius: 8px;
}

.navbar .dropdown ul a i {
  font-size: 0.7rem;
  margin-left: auto;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul .active:focus,
.navbar .dropdown ul li:hover > a {
  color: var(--ph-primary);
  background: rgba(79, 70, 229, 0.06);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  top: 100%;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 12px);
}

.navbar .dropdown .dropdown:hover > ul {
  top: 0;
  left: 100%;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/* Mobile nav */
.mobile-nav-toggle {
  color: var(--ph-dark);
  font-size: 26px;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--ph-border);
  background: #fff;
  box-shadow: var(--ph-shadow-sm);
  line-height: 0;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--ph-primary);
  border-color: var(--ph-primary);
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 16px;
  }

  .navbar > ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(8px);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.navbar-mobile .mobile-nav-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 56px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  background: #fff;
  border-radius: var(--ph-radius-lg);
  overflow-y: auto;
  transition: 0.3s;
  box-shadow: var(--ph-shadow-lg);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--ph-dark);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 12px 0 4px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 4px 8px;
  padding: 8px;
  box-shadow: none;
  border: 1px solid var(--ph-border);
  border-radius: 12px;
  background: var(--ph-light);
  opacity: 1;
  visibility: visible;
  transform: none;
  top: auto;
  left: auto;
  min-width: 0;
}

.navbar-mobile .dropdown .dropdown ul {
  margin-left: 16px;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #eef2ff 0%, #f5f3ff 40%, #fdf4ff 100%);
  padding: calc(var(--ph-header-h) + 40px) 0 60px;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobFloat 14s ease-in-out infinite;
}

.hero-blob-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, #a5b4fc, transparent 70%);
}

.hero-blob-2 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -100px;
  background: radial-gradient(circle, #f0abfc, transparent 70%);
  animation-delay: -4s;
}

.hero-blob-3 {
  width: 320px;
  height: 320px;
  top: 40%;
  left: 45%;
  background: radial-gradient(circle, #67e8f9, transparent 70%);
  animation-delay: -8s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.08); }
  66% { transform: translate(-25px, 20px) scale(0.95); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e7ff;
  color: var(--ph-primary-700);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: var(--ph-shadow-sm);
  animation: fadeInUp 0.8s ease both;
}

.hero-badge i {
  color: var(--ph-green);
  font-size: 0.95rem;
}

#hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 20px 0 20px;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.1s;
}

#hero .hero-sub {
  font-size: 1.12rem;
  color: var(--ph-muted);
  max-width: 560px;
  margin-bottom: 34px;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.3s;
}

.btn-primary-grad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ph-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 14px;
  border: 0;
  box-shadow: var(--ph-shadow-glow);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-grad:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(79, 70, 229, 0.45);
}

.btn-outline-dark-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ph-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 14px;
  border: 1.5px solid var(--ph-border);
  transition: all 0.35s ease;
}

.btn-outline-dark-soft:hover {
  color: var(--ph-primary);
  border-color: var(--ph-primary);
  transform: translateY(-3px);
  box-shadow: var(--ph-shadow);
}

/* Hero visual — mock dashboard card */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.9s ease both;
  animation-delay: 0.3s;
}

.hero-dashboard {
  background: #fff;
  border-radius: var(--ph-radius-xl);
  box-shadow: var(--ph-shadow-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 26px;
  position: relative;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-dashboard:hover {
  transform: perspective(1200px) rotateY(0) rotateX(0);
}

.hero-dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.hero-dash-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ph-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dash-dots {
  display: flex;
  gap: 5px;
}

.hero-dash-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e2e8f0;
}

.hero-dash-dots span:first-child { background: #f87171; }
.hero-dash-dots span:nth-child(2) { background: #fbbf24; }
.hero-dash-dots span:last-child { background: #34d399; }

.hero-balance {
  background: var(--ph-gradient);
  border-radius: var(--ph-radius-lg);
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-balance::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -40px;
  right: -30px;
}

.hero-balance small {
  display: block;
  opacity: 0.85;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.hero-balance strong {
  display: block;
  font-family: var(--ph-font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 4px;
}

.hero-transactions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-tx {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  background: #fff;
}

.hero-tx-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-tx-icon.success { background: #d1fae5; color: #059669; }
.hero-tx-icon.info { background: #e0f2fe; color: #0284c7; }
.hero-tx-icon.warning { background: #fef3c7; color: #d97706; }

.hero-tx-body {
  flex: 1;
  min-width: 0;
}

.hero-tx-body strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ph-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tx-body small {
  color: var(--ph-muted);
  font-size: 0.74rem;
}

.hero-tx-amount {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ph-dark);
  font-family: var(--ph-font-heading);
}

/* Floating mini cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--ph-radius);
  box-shadow: var(--ph-shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: floatY 4.5s ease-in-out infinite;
}

.float-card .float-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.float-card small {
  display: block;
  color: var(--ph-muted);
  font-size: 0.7rem;
  line-height: 1.2;
}

.float-card strong {
  font-family: var(--ph-font-heading);
  font-size: 0.95rem;
  color: var(--ph-dark);
  line-height: 1.2;
}

.float-card-1 {
  top: 6%;
  left: -6%;
  animation-delay: 0s;
}

.float-card-2 {
  bottom: 10%;
  right: -6%;
  animation-delay: -2s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ph-muted);
  font-size: 1.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.8; }
  50% { transform: translate(-50%, 10px); opacity: 0.4; }
}

@media (max-width: 991px) {
  #hero {
    min-height: auto;
    padding: calc(var(--ph-header-h) + 30px) 0 60px;
    text-align: center;
  }

  #hero .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
}

/*--------------------------------------------------------------
# Section titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--ph-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title p {
  color: var(--ph-muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-title.text-start {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-title.text-start .section-eyebrow {
  margin-bottom: 14px;
}

/*--------------------------------------------------------------
# Feature / icon boxes (services)
--------------------------------------------------------------*/
.icon-box {
  position: relative;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--ph-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.icon-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--ph-shadow-lg);
  border-color: transparent;
}

.icon-box:hover::before {
  transform: scaleX(1);
}

.icon-box .icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--ph-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--ph-primary);
  transition: all 0.4s ease;
  position: relative;
}

.icon-box:hover .icon {
  background: var(--ph-gradient);
  color: #fff;
  box-shadow: var(--ph-shadow-glow);
  transform: rotate(-6deg) scale(1.05);
}

.icon-box .title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ph-dark);
  margin-bottom: 12px;
}

.icon-box .title a {
  color: var(--ph-dark);
}

.icon-box .title a:hover {
  color: var(--ph-primary);
}

.icon-box .description {
  color: var(--ph-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.75;
}

/* Variant: soft bg cards */
.feature-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: all 0.4s ease;
}

.feature-card:hover {
  box-shadow: var(--ph-shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-card .feature-icon.ic-indigo { background: #e0e7ff; color: #4338ca; }
.feature-card .feature-icon.ic-violet { background: #ede9fe; color: #7c3aed; }
.feature-card .feature-icon.ic-cyan { background: #cffafe; color: #0891b2; }
.feature-card .feature-icon.ic-green { background: #d1fae5; color: #059669; }
.feature-card .feature-icon.ic-amber { background: #fef3c7; color: #d97706; }
.feature-card .feature-icon.ic-rose { background: #ffe4e6; color: #e11d48; }

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--ph-muted);
  font-size: 0.92rem;
  margin: 0;
}

/*--------------------------------------------------------------
# Product cards
--------------------------------------------------------------*/
.product-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-xl);
  padding: 36px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ph-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--ph-gradient-soft);
  transition: transform 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--ph-shadow-lg);
}

.product-card:hover::after {
  transform: scale(1.6);
}

.product-card .product-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--ph-gradient);
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: var(--ph-shadow-glow);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
  transform: rotate(-8deg) scale(1.08);
}

.product-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.product-card p {
  color: var(--ph-muted);
  font-size: 0.92rem;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.product-card .product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ph-primary);
  margin-top: 16px;
  position: relative;
  z-index: 1;
  transition: gap 0.3s ease;
}

.product-card .product-link:hover {
  color: var(--ph-violet);
  gap: 12px;
}

/*--------------------------------------------------------------
# API endpoint cards
--------------------------------------------------------------*/
.api-card {
  background: var(--ph-darker);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--ph-radius-lg);
  padding: 26px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.api-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 20px 50px rgba(11, 17, 32, 0.5);
}

.api-card .api-method {
  display: inline-block;
  font-family: var(--ph-font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #a5b4fc;
  background: rgba(79, 70, 229, 0.15);
  border: 1px solid rgba(79, 70, 229, 0.35);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.api-card h4 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.api-card h4 a {
  color: #fff;
}

.api-card h4 a:hover {
  color: #a5b4fc;
}

.api-card p {
  color: #94a3b8;
  font-size: 0.88rem;
  flex-grow: 1;
  margin-bottom: 14px;
}

.api-card .api-tag {
  font-family: var(--ph-font-heading);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Portfolio / screenshots
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--ph-radius-lg);
  overflow: hidden;
  box-shadow: var(--ph-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio .portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--ph-shadow-lg);
}

.portfolio .portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio .portfolio-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 17, 32, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-info h4 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
  transform: translateY(12px);
  transition: transform 0.4s ease;
}

.portfolio .portfolio-info p {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 0;
  transform: translateY(12px);
  transition: transform 0.4s ease 0.05s;
}

.portfolio .portfolio-item:hover .portfolio-info h4,
.portfolio .portfolio-item:hover .portfolio-info p {
  transform: translateY(0);
}

.portfolio .portfolio-info .preview-link {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio .portfolio-info .preview-link:hover {
  background: var(--ph-gradient);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# How it works
--------------------------------------------------------------*/
.step-item {
  position: relative;
  text-align: center;
  padding: 20px 12px;
}

.step-item .step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: var(--ph-gradient);
  color: #fff;
  font-family: var(--ph-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ph-shadow-glow);
  position: relative;
  z-index: 1;
}

.step-item .step-num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 2px dashed rgba(79, 70, 229, 0.35);
  animation: spinSlow 14s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.step-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-item p {
  color: var(--ph-muted);
  font-size: 0.92rem;
  margin: 0 auto;
  max-width: 260px;
}

.step-arrow {
  position: absolute;
  top: 40px;
  right: -18px;
  color: var(--ph-primary);
  font-size: 1.6rem;
  z-index: 2;
  animation: arrowPulse 1.8s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(6px); }
}

@media (max-width: 991px) {
  .step-arrow {
    display: none;
  }
}

/*--------------------------------------------------------------
# Stats
--------------------------------------------------------------*/
.stats-section {
  background: var(--ph-gradient);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -200px;
  right: -100px;
}

.stats-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  bottom: -150px;
  left: -80px;
}

.stat-box {
  text-align: center;
  color: #fff;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.stat-box .stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  opacity: 0.9;
}

.stat-box .stat-number {
  font-family: var(--ph-font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box .stat-suffix {
  font-size: 1.8rem;
  margin-left: 2px;
}

.stat-box .stat-label {
  margin-top: 8px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Clients marquee
--------------------------------------------------------------*/
.clients-section {
  padding: 60px 0;
  background: #fff;
}

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

.clients-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

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

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

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius);
  padding: 20px 34px;
  height: 92px;
  min-width: 170px;
  transition: all 0.35s ease;
}

.client-logo img {
  max-height: 44px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.35s ease;
}

.client-logo:hover {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: var(--ph-shadow);
  transform: translateY(-4px);
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

/*--------------------------------------------------------------
# CTA banner
--------------------------------------------------------------*/
.cta-banner {
  background: var(--ph-gradient);
  border-radius: var(--ph-radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
}

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

.cta-banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  bottom: -130px;
  left: 12%;
}

.cta-banner h3 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ph-primary-700);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 14px;
  transition: all 0.35s ease;
  position: relative;
  z-index: 1;
}

.cta-banner .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  color: var(--ph-primary-700);
}

@media (max-width: 991px) {
  .cta-banner {
    padding: 40px 28px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs / page hero
--------------------------------------------------------------*/
.page-hero {
  position: relative;
  padding: calc(var(--ph-header-h) + 64px) 0 48px;
  background: linear-gradient(160deg, #eef2ff 0%, #f5f3ff 60%, #fdf4ff 100%);
  overflow: hidden;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.page-hero::before {
  width: 380px;
  height: 380px;
  top: -140px;
  right: -100px;
  background: radial-gradient(circle, #a5b4fc, transparent 70%);
}

.page-hero::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  left: -80px;
  background: radial-gradient(circle, #f0abfc, transparent 70%);
}

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

.page-hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero .page-sub {
  color: var(--ph-muted);
  font-size: 1.02rem;
  max-width: 620px;
}

.page-hero .breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--ph-muted);
}

.page-hero .breadcrumb-nav a {
  color: var(--ph-primary);
  font-weight: 500;
}

.page-hero .breadcrumb-nav a:hover {
  color: var(--ph-violet);
}

.page-hero .breadcrumb-nav i {
  font-size: 0.75rem;
  color: #94a3b8;
}

/*--------------------------------------------------------------
# FAQ accordion
--------------------------------------------------------------*/
.accordion-item {
  border: 1px solid var(--ph-border) !important;
  border-radius: var(--ph-radius) !important;
  margin-bottom: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--ph-shadow-sm);
}

.accordion-button {
  font-family: var(--ph-font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ph-dark) !important;
  background: #fff !important;
  padding: 20px 24px;
  box-shadow: none !important;
}

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

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234f46e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-size: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--ph-gradient-soft) !important;
  color: var(--ph-primary) !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.accordion-body {
  padding: 4px 24px 24px;
  color: var(--ph-muted);
  font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Contact & forms
--------------------------------------------------------------*/
.form-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-xl);
  box-shadow: var(--ph-shadow);
  padding: 40px;
}

.form-card .form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ph-dark);
  margin-bottom: 8px;
}

.form-control {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-select {
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-radius-sm);
  padding: 12px 16px;
}

.form-select:focus {
  border-color: var(--ph-primary);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.contact .info-box {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 28px 24px;
  height: 100%;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.35s ease;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--ph-shadow-lg);
  border-color: transparent;
}

.contact .info-box i {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--ph-gradient-soft);
  color: var(--ph-primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-box h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact .info-box p {
  color: var(--ph-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact .info-box p a {
  color: var(--ph-muted);
}

.contact .info-box p a:hover {
  color: var(--ph-primary);
}

/* Form feedback */
.php-email-form .error-message {
  color: #fff;
  background: var(--ph-red);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.php-email-form .sent-message {
  color: #fff;
  background: var(--ph-green);
  border-radius: 10px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
}

.php-email-form .loading {
  display: none;
  text-align: center;
  padding: 12px;
  color: var(--ph-muted);
}

.php-email-form .loading::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid var(--ph-border);
  border-top-color: var(--ph-primary);
  animation: animate-loading 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes animate-loading {
  to { transform: rotate(360deg); }
}

.btn-submit {
  background: var(--ph-gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 36px;
  border-radius: 14px;
  border: 0;
  box-shadow: var(--ph-shadow-glow);
  transition: all 0.35s ease;
}

.btn-submit:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.4);
}

/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/
.map-wrap {
  border-radius: var(--ph-radius-xl);
  overflow: hidden;
  box-shadow: var(--ph-shadow);
  border: 1px solid var(--ph-border);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-image {
  position: relative;
}

.about-image .about-img-main {
  border-radius: var(--ph-radius-xl);
  overflow: hidden;
  box-shadow: var(--ph-shadow-lg);
}

.about-image .about-img-main img {
  width: 100%;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -14px;
  background: var(--ph-gradient);
  color: #fff;
  border-radius: var(--ph-radius);
  padding: 18px 24px;
  box-shadow: var(--ph-shadow-glow);
  text-align: center;
}

.about-badge strong {
  display: block;
  font-family: var(--ph-font-heading);
  font-size: 1.6rem;
  line-height: 1.1;
}

.about-badge small {
  font-size: 0.78rem;
  opacity: 0.9;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--ph-gradient-soft);
  color: var(--ph-primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about-point h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-point p {
  color: var(--ph-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Value / mission cards */
.value-card {
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-lg);
  padding: 34px 28px;
  height: 100%;
  text-align: center;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ph-shadow-lg);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: var(--ph-gradient);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ph-shadow-glow);
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--ph-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--ph-dark);
}

.check-list li i {
  color: var(--ph-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Content blocks (product/API pages)
--------------------------------------------------------------*/
.content-lead p {
  font-size: 1.05rem;
  color: var(--ph-muted);
  margin-bottom: 18px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--ph-darker);
  color: #94a3b8;
  font-size: 0.92rem;
  position: relative;
}

#footer .footer-wave {
  display: block;
  margin-bottom: -2px;
}

#footer .footer-main {
  padding: 64px 0 40px;
}

#footer h5 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

#footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: var(--ph-gradient);
}

#footer .footer-logo img {
  max-height: 44px;
  margin-bottom: 16px;
}

#footer .footer-about p {
  margin-bottom: 20px;
}

#footer .footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

#footer .footer-contact li i {
  color: var(--ph-primary);
  font-size: 1.1rem;
  margin-top: 3px;
}

#footer .footer-contact li a {
  color: #94a3b8;
}

#footer .footer-contact li a:hover {
  color: #fff;
}

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

#footer .footer-links ul li {
  margin-bottom: 12px;
}

#footer .footer-links ul a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

#footer .footer-links ul a i {
  font-size: 0.8rem;
  color: var(--ph-primary);
  transition: transform 0.3s ease;
}

#footer .footer-links ul a:hover {
  color: #fff;
  padding-left: 4px;
}

#footer .footer-links ul a:hover i {
  transform: translateX(3px);
}

#footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

#footer .footer-social a:hover {
  background: var(--ph-gradient);
  color: #fff;
  transform: translateY(-3px);
  border-color: transparent;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 0;
}

#footer .footer-bottom .copyright strong {
  color: #fff;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
