/* =========================================
   POWER PAYMENT SOLUTIONS — style.css
   Miami Holographic Theme
   ========================================= */

/* --- Variables --- */
:root {
  --bg-primary: #05000f;
  --bg-secondary: #0a0020;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --gradient: linear-gradient(135deg, #b44fff 0%, #52C2D0 18%, #b44fff 25%, #EF7966 38%, #00e5a0 48%, #ED6581 55%, #f0c040 65%, #52C2D0 75%, #b44fff 82%, #EF7966 100%);
  --gradient-h: linear-gradient(90deg, #b44fff 0%, #52C2D0 18%, #b44fff 25%, #EF7966 38%, #00e5a0 48%, #ED6581 55%, #f0c040 65%, #52C2D0 75%, #b44fff 82%, #EF7966 100%);
  --neon-cyan: #52C2D0;
  --neon-magenta: #ED6581;
  --neon-purple: #b44fff;
  --neon-orange: #EF7966;
  --brand-salmon: #EF7966;
  --brand-cyan: #52C2D0;
  --brand-pink: #ED6581;
  --brand-grey: #2E2C2F;
  --gradient-btn: none;
  --btn-bg: #EF7966;
  --text-primary: #ffffff;
  --text-secondary: #8892a4;
  --text-muted: #4a556a;
  --border: rgba(255, 255, 255, 0.07);
  --border-light: rgba(255, 255, 255, 0.12);
  --font-head: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 80px;
  --max-w: 1200px;
  --r: 12px;
  --r-lg: 20px;
  --ease: all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.text-center { text-align: center; }

/* --- Gradient Utilities --- */
.g-text {
  color: var(--page-accent, #52C2D0);
  -webkit-text-fill-color: var(--page-accent, #52C2D0);
}
.g-border {
  position: relative;
  isolation: isolate;
}
.g-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  opacity: 0.5;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--brand-salmon);
  color: #fff;
  box-shadow: 0 4px 28px rgba(239, 121, 102, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #e06b55;
  box-shadow: 0 8px 40px rgba(239, 121, 102, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.btn-lg { padding: 16px 40px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: var(--ease);
}
.nav.scrolled {
  background: rgba(5, 0, 15, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img { width: 56px; height: 56px; object-fit: contain; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}
.nav-cta {
  padding: 10px 22px !important;
  background: var(--brand-salmon) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(239, 121, 102, 0.5);
  background: #e06b55 !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(5, 0, 15, 0.98);
  backdrop-filter: blur(24px);
  padding: 20px 24px 28px;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px;
  font-size: 16px;
  color: var(--text-secondary);
  border-radius: 10px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }
.mobile-menu .btn-primary { text-align: center; justify-content: center; margin-top: 8px; color: #000 !important; }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(180, 79, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 79, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 { top: 5%; left: 15%; width: 560px; height: 560px; background: radial-gradient(circle, rgba(180,79,255,0.14) 0%, transparent 70%); }
.hero-glow-2 { bottom: 10%; right: 10%; width: 440px; height: 440px; background: radial-gradient(circle, rgba(0,229,255,0.10) 0%, transparent 70%); }
.hero-glow-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 700px; height: 400px; background: radial-gradient(ellipse, rgba(255,60,172,0.05) 0%, transparent 70%); }
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(180,79,255,0.1);
  border: 1px solid rgba(180,79,255,0.3);
  border-radius: 50px;
  font-size: 12px;
  color: var(--neon-purple);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--neon-purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.6); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 620px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--page-stat, #00e5a0);
  -webkit-text-fill-color: var(--page-stat, #00e5a0);
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* --- Trust Bar --- */
.trust-bar {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.trust-item-icon { font-size: 18px; }

/* --- Section Header --- */
.sec-header { margin-bottom: 64px; }
.sec-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(0,229,255,0.07);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 50px;
  font-size: 11px;
  color: var(--neon-cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.sec-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  transition: var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-h);
  opacity: 0;
  transition: var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.service-card:hover::after { opacity: 1; }
.svc-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.svc-icon-purple { background: rgba(180,79,255,0.1); border: 1px solid rgba(180,79,255,0.25); }
.svc-icon-cyan { background: rgba(0,229,255,0.1); border: 1px solid rgba(0,229,255,0.25); }
.svc-icon-magenta { background: rgba(255,60,172,0.1); border: 1px solid rgba(255,60,172,0.25); }
.svc-icon-orange { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25); }
.svc-title { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.svc-desc { color: var(--text-secondary); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.svc-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.svc-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-secondary);
}
.svc-feature::before { content: '▸'; color: var(--neon-cyan); font-size: 12px; flex-shrink: 0; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--neon-cyan);
}
.svc-link:hover { gap: 10px; }

/* --- Why Us --- */
.why-us { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 40px;
}
.leo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: rgba(180,79,255,0.1);
  border: 1px solid rgba(180,79,255,0.3);
  border-radius: 50px;
  font-size: 13px; font-weight: 600; color: var(--neon-purple);
  margin-bottom: 18px;
}
.why-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.75; margin-bottom: 28px; }
.why-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
}
.why-stat-num {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  color: var(--page-stat, #00e5a0);
  -webkit-text-fill-color: var(--page-stat, #00e5a0);
}
.why-stat-label { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.why-content .sec-header { text-align: left; margin-bottom: 28px; }
.why-content .sec-sub { margin: 0; }
.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.val-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
}
.val-text h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.val-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* --- Process Steps --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { display: flex; flex-direction: column; gap: 16px; }
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--neon-cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 17px; font-weight: 800; color: #000;
}
.step-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* --- Blog Cards --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-light);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.blog-thumb {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: var(--gradient);
}
.blog-thumb-overlay {
  position: absolute; inset: 0;
  background: rgba(5,0,15,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
.blog-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--neon-cyan); margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  line-height: 1.35; margin-bottom: 10px; transition: var(--ease);
}
.blog-card:hover .blog-title {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.blog-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }

/* --- CTA Section --- */
.cta-section { text-align: center; position: relative; overflow: hidden; }
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: none;
  filter: blur(60px); pointer-events: none;
}
.cta-box {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 80px 60px;
  max-width: 820px; margin: 0 auto;
  isolation: isolate;
}
.cta-box::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: var(--bg-card);
  z-index: -1; opacity: 1;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; margin-bottom: 14px; line-height: 1.15;
}
.cta-sub { font-size: 17px; color: var(--text-secondary); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
.footer { background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { width: 38px; height: 38px; object-fit: contain; }
.footer-logo-text {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: #ffffff;
}
.footer-tagline { font-size: 14px; color: var(--text-secondary); line-height: 1.65; max-width: 280px; margin-bottom: 20px; }
.footer-col h4 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-secondary); margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--neon-cyan); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--neon-cyan); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  min-height: 50vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-content { position: relative; z-index: 1; max-width: 740px; }

/* --- Breadcrumb --- */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--neon-cyan); }
.breadcrumb-sep { color: var(--text-muted); }

/* --- Detail Feature Grid --- */
.feature-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; transition: var(--ease);
}
.feature-item:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.fi-icon { font-size: 28px; margin-bottom: 12px; }
.fi-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.fi-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* --- Pricing / Plan Cards --- */
.plan-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px; transition: var(--ease); text-align: center; position: relative; isolation: isolate;
}
.plan-card.featured::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1; opacity: 0.5;
}
.plan-badge {
  display: inline-block; padding: 4px 14px;
  background: var(--gradient); border-radius: 50px;
  font-size: 11px; font-weight: 700; color: #000; margin-bottom: 20px;
}
.plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--neon-cyan); }
.plan-price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; }
.plan-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; text-align: left; }
.plan-feature { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); }
.plan-feature::before { content: '✓'; color: var(--neon-cyan); font-weight: 700; flex-shrink: 0; }

/* --- Blog Post Article --- */
.article-wrap { max-width: 800px; margin: 0 auto; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.article-cat {
  padding: 5px 14px; background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2);
  border-radius: 50px; font-size: 12px; font-weight: 700; color: var(--neon-cyan);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.article-date { font-size: 13px; color: var(--text-muted); }
.article-read { font-size: 13px; color: var(--text-muted); }
.article-body h2 {
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  margin: 40px 0 14px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.article-body h3 {
  font-family: var(--font-head); font-size: 20px; font-weight: 700;
  margin: 28px 0 10px; color: var(--neon-cyan);
}
.article-body p { color: var(--text-secondary); line-height: 1.85; margin-bottom: 20px; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 20px; }
.article-body li { color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body blockquote {
  border-left: 3px solid var(--neon-cyan);
  padding: 16px 24px;
  background: rgba(0,229,255,0.04);
  border-radius: 0 10px 10px 0;
  margin: 28px 0; font-size: 16px; color: var(--text-primary); font-style: italic;
}
.article-body strong { color: var(--text-primary); }
.article-cta {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: var(--r-lg); padding: 40px; margin: 48px 0; text-align: center;
  isolation: isolate; position: relative;
}
.article-cta::before {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit;
  background: var(--gradient); z-index: -1; opacity: 0.3;
}
.article-cta h3 { font-family: var(--font-head); font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.article-cta p { color: var(--text-secondary); font-size: 15px; margin-bottom: 24px; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  background: rgba(180,79,255,0.1); border: 1px solid rgba(180,79,255,0.2);
}
.cd-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.cd-value { font-size: 15px; font-weight: 500; }
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 44px;
}
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-secondary); }
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--text-primary); font-size: 15px;
  transition: var(--ease); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--neon-cyan);
  background: rgba(0,229,255,0.03);
  box-shadow: 0 0 0 3px rgba(0,229,255,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-select option { background: #0a0020; color: var(--text-primary); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* --- About Page --- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; text-align: center; transition: var(--ease);
}
.team-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
}
.team-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--neon-cyan); font-weight: 600; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px; transition: var(--ease);
}
.testimonial-card:hover { border-color: var(--border-light); }
.stars { color: #ffd700; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.t-name { font-weight: 700; font-size: 14px; }
.t-title { font-size: 12px; color: var(--text-muted); }

/* --- Social Links --- */
.social-links { display: flex; gap: 16px; align-items: center; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border-light); background: var(--bg-card);
  transition: var(--ease);
}
.social-link:hover {
  border-color: transparent; background: var(--brand-cyan);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(82, 194, 208, 0.4);
}
.social-link svg { width: 20px; height: 20px; fill: #fff; }

/* --- Social Follow Section --- */
.social-follow { text-align: center; padding: 60px 0; }
.social-follow .sec-title { margin-bottom: 12px; }
.social-follow-text { color: var(--text-secondary); font-size: 16px; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.social-follow-links { display: flex; gap: 20px; justify-content: center; }
.social-follow-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; border-radius: 50px;
  border: 1px solid var(--border-light); background: var(--bg-card);
  color: #fff; font-size: 15px; font-weight: 600; transition: var(--ease);
}
.social-follow-btn:hover {
  border-color: transparent; background: var(--brand-cyan);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(82, 194, 208, 0.4);
}
.social-follow-btn svg { width: 20px; height: 20px; fill: #fff; }

/* --- Sticky Social Sidebar --- */
.social-sidebar {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 8px;
  padding: 10px 8px; background: rgba(5, 0, 15, 0.85);
  border-radius: 12px 0 0 12px; border: 1px solid var(--border);
  border-right: none; backdrop-filter: blur(12px);
}
.social-sidebar .social-link { width: 38px; height: 38px; }
.social-sidebar .social-link svg { width: 18px; height: 18px; }

/* --- Footer Social --- */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social .social-link { width: 36px; height: 36px; }
.footer-social .social-link svg { width: 16px; height: 16px; }

/* --- Scroll Reveal --- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Print --- */
@media print {
  html, body { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; color-adjust: exact !important; background: var(--bg-primary) !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .nav, .social-sidebar, .mobile-menu, .nav-hamburger { display: none !important; }
  .page-hero, .hero, section, .section { page-break-inside: avoid; }
  .service-card, .feature-item, .value-item, .blog-thumb, .article-hero-image { page-break-inside: avoid; }
  a { color: inherit !important; text-decoration: none !important; }
  img { max-width: 100% !important; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero-stats { gap: 28px; }
  .cta-box { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-grid-2 { grid-template-columns: 1fr; }
  .social-sidebar { display: none; }
  .social-follow-links { flex-direction: column; align-items: center; }
}
/* --- ATM Tab Buttons --- */
.atm-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}
.atm-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-secondary);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.atm-tab:hover {
  border-color: rgba(82, 194, 208, 0.3);
  color: var(--text-primary);
  background: rgba(82, 194, 208, 0.06);
}
.atm-tab.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, rgba(180, 79, 255, 0.25), rgba(0, 212, 255, 0.25));
  box-shadow: 0 0 20px rgba(82, 194, 208, 0.3), 0 0 40px rgba(180, 79, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: tabGlow 2s ease-in-out infinite alternate;
}
.atm-tab:nth-child(2).active {
  background: rgba(82, 194, 208, 0.2);
  box-shadow: 0 0 20px rgba(82, 194, 208, 0.35), 0 0 40px rgba(82, 194, 208, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: tabGlowCyan 2s ease-in-out infinite alternate;
}
@keyframes tabGlow {
  0% { box-shadow: 0 0 15px rgba(82, 194, 208, 0.25), 0 0 30px rgba(180, 79, 255, 0.1); }
  100% { box-shadow: 0 0 25px rgba(82, 194, 208, 0.4), 0 0 50px rgba(180, 79, 255, 0.2); }
}
@keyframes tabGlowCyan {
  0% { box-shadow: 0 0 15px rgba(82, 194, 208, 0.3), 0 0 30px rgba(82, 194, 208, 0.1); }
  100% { box-shadow: 0 0 25px rgba(82, 194, 208, 0.5), 0 0 50px rgba(82, 194, 208, 0.25); }
}
.atm-panel {
  display: none;
}
.atm-panel.active {
  display: block;
  animation: panelFade 0.35s ease;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .trust-bar-inner { flex-direction: column; gap: 14px; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .atm-tabs { flex-direction: column; }
}
