/* Google Fonts loaded via HTML <link> tags — do not use @import */


/* ========================================
   proofofaddress.net — Light Premium Theme
   Same layout & animations, light colors
======================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f8fc;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f4ff;
  --bg-footer: #0f1724;
  --gradient-primary: linear-gradient(135deg, #00c6ff, #0072ff);
  --gradient-accent: linear-gradient(135deg, #00d4aa, #00c6ff);
  --color-primary: #0072ff;
  --color-secondary: #00c6ff;
  --color-accent: #00d4aa;
  --text-heading: #1a1f36;
  --text-body: #555e6d;
  --text-muted: #8896a6;
  --border-color: #e8ecf2;
  --border-hover: rgba(0,114,255,0.25);
  --gold: #f5a623;
  --green: #00d4aa;
  --whatsapp: #25d366;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-glow: 0 8px 30px rgba(0,114,255,0.10);
  --shadow-glow-strong: 0 15px 40px rgba(0,114,255,0.15);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c0c8d4; border-radius: 4px; }

a { color: var(--color-primary); text-decoration: none; transition: all var(--transition); }
a:hover { color: var(--color-accent); }
img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Layout */
.container, .section-container, .stats-container, .hero-container, .cta-container, .footer-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 36px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 50px; border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition); text-decoration: none; line-height: 1;
}

.btn-gradient { background: var(--gradient-primary); color: #fff; border: none; box-shadow: 0 4px 20px rgba(0,114,255,0.2); }
.btn-gradient:hover { box-shadow: 0 8px 35px rgba(0,114,255,0.3); transform: translateY(-3px); color: #fff; }

.btn-outline { background: transparent; color: var(--text-heading); border: 2px solid var(--border-color); }
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: rgba(0,114,255,0.04); transform: translateY(-3px); }

.btn-white { background: #fff; color: var(--color-primary); border: none; font-weight: 700; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--text-heading); color: #fff; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-3px); }

.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ========== QUICK PROOF OF ADDRESS SECTION ========== */
.quick-proof-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.quick-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.quick-proof-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border-color);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.quick-proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition);
}

.quick-proof-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow-strong);
  border-color: var(--border-hover);
}

.quick-proof-card:hover::before { opacity: 1; }

.quick-proof-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 114, 255, 0.2);
}

.quick-proof-title {
  font-size: 20px;
  color: var(--text-heading);
  margin-bottom: 14px;
}

.quick-proof-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.quick-proof-list {
  list-style: none;
  margin-bottom: 24px;
}

.quick-proof-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-body);
  padding: 6px 0;
}

.quick-proof-list li i {
  color: var(--color-accent);
  font-size: 12px;
  flex-shrink: 0;
}

.quick-proof-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--color-primary);
  transition: all var(--transition);
}

.quick-proof-link:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* Pro Tip Banner */
.quick-proof-tips {
  display: flex; align-items: flex-start; gap: 20px;
  background: linear-gradient(135deg, rgba(0, 114, 255, 0.06), rgba(0, 198, 255, 0.06));
  border: 1px solid rgba(0, 114, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
}

.quick-proof-tip-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff;
}

.quick-proof-tip-content h4 {
  font-size: 16px; color: var(--text-heading);
  margin-bottom: 8px;
}

.quick-proof-tip-content p {
  font-size: 14px; color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .quick-proof-grid { grid-template-columns: 1fr; }
  .quick-proof-tips { flex-direction: column; }
}

/* ========== SECTION HEADINGS ========== */
.section-header { text-align: center; margin-bottom: 60px; }

.section-overline {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px;
  background: var(--gradient-primary); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-heading); margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent; transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgb(255 255 255);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; transition: height 0.4s ease;
}

.site-header.scrolled .header-container { height: 64px; }

.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 20px; color: #fff; text-decoration: none;
}

.site-header.scrolled .logo { color: var(--text-heading); }

.logo-icon {
  width: 40px; height: 40px; background: var(--gradient-primary);
  border-radius: 12px; display: inline-flex; align-items: center;
  justify-content: center; font-weight: 900; font-size: 15px;
  color: #fff; box-shadow: 0 4px 15px rgba(0,114,255,0.25);
}

.logo-text { font-weight: 800; }

.logo-img {
  width: auto;
  height: 66px;
  border-radius: 5px;
}

.logo-dark { display: none; }
.logo-light { display: block; }

.site-header.scrolled .logo-dark { display: block; }
.site-header.scrolled .logo-light { display: none; }

.footer-logo .logo-img {
  height: 66px;
  border-radius: 5px;
}

.footer-logo .logo-dark { display: none; }
.footer-logo .logo-light { display: block; }

/* Nav */
.main-nav .nav-links { display: flex; align-items: center; gap: 4px; }
.main-nav .nav-links li { position: relative; }

.main-nav .nav-links li a, .nav-link {
  color: rgba(255,255,255,0.85); font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500; font-size: 14px; padding: 8px 16px;
  border-radius: 8px; display: inline-flex; align-items: center; gap: 5px;
  transition: all var(--transition); text-decoration: none;
}

.site-header.scrolled .main-nav .nav-links li a,
.site-header.scrolled .nav-link {
  color: var(--text-body);
}

.main-nav .nav-links li a:hover, .nav-link:hover,
.main-nav .nav-links li a.active {
  color: #fff; background: rgba(255,255,255,0.12);
}

.site-header.scrolled .main-nav .nav-links li a:hover,
.site-header.scrolled .nav-link:hover,
.site-header.scrolled .main-nav .nav-links li a.active {
  color: var(--color-primary); background: rgba(0,114,255,0.06);
}

.dropdown-arrow { transition: transform 0.3s; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown Menu */
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); min-width: 240px;
  background: #fff; border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.10); z-index: 9999;
}

.has-dropdown:hover > .dropdown-menu { display: block; animation: fadeDown 0.25s ease; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-menu li a {
  padding: 10px 16px !important; font-size: 13px !important;
  color: var(--text-body) !important; border-radius: 8px; display: block;
}
.dropdown-menu li a:hover { color: var(--color-primary) !important; background: rgba(0,114,255,0.05) !important; }

/* Header CTA */
.header-cta {
  display: inline-flex; align-items: center; padding: 10px 24px;
  background: var(--gradient-primary); color: #fff; border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0,114,255,0.2); transition: all var(--transition);
}
.header-cta:hover { box-shadow: 0 8px 30px rgba(0,114,255,0.3); transform: translateY(-2px); color: #fff; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px; z-index: 10001;
}
.hamburger-line {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px; transition: all 0.3s ease;
}
.site-header.scrolled .hamburger-line { background: var(--text-heading); }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ========== HERO — IMMERSIVE DOCUMENT SHOWCASE ========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
  background: linear-gradient(160deg, #020617 0%, #0a1628 30%, #0f172a 60%, #1a1040 100%);
}

/* Subtle noise texture */
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.03; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Aurora Borealis */
.hero-aurora {
  position: absolute; top: -30%; left: -20%; right: -20%; height: 70%;
  z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(0,114,255,0.2) 25%, rgba(0,198,255,0.15) 50%, rgba(124,58,237,0.1) 75%, transparent 100%);
  filter: blur(80px); opacity: 0.5;
  animation: auroraShift 8s ease-in-out infinite alternate;
  mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
}

.hero-aurora-2 {
  top: -20%; left: -40%;
  background: linear-gradient(90deg, transparent 0%, rgba(124,58,237,0.2) 30%, rgba(0,212,170,0.12) 55%, rgba(0,114,255,0.08) 80%, transparent 100%);
  animation: auroraShift2 12s ease-in-out infinite alternate;
  animation-delay: -3s;
}

@keyframes auroraShift {
  0% { transform: translateX(0) scaleY(1); opacity: 0.3; }
  100% { transform: translateX(15%) scaleY(1.3); opacity: 0.6; }
}

@keyframes auroraShift2 {
  0% { transform: translateX(5%) scaleY(1.2); opacity: 0.2; }
  100% { transform: translateX(-15%) scaleY(0.8); opacity: 0.45; }
}

/* Morphing Blobs */
.hero-blob {
  position: absolute; filter: blur(80px);
  z-index: 1; pointer-events: none;
}

.hero-blob-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,114,255,0.2) 0%, rgba(124,58,237,0.08) 70%, transparent 100%);
  top: 20%; right: 5%;
  animation: blobMorph1 10s ease-in-out infinite;
}

.hero-blob-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,170,0.15) 0%, rgba(0,198,255,0.06) 70%, transparent 100%);
  bottom: 10%; right: 15%;
  animation: blobMorph2 12s ease-in-out infinite;
}

@keyframes blobMorph1 {
  0%, 100% { border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%; transform: rotate(0deg) scale(1); }
  33% { border-radius: 60% 40% 30% 70% / 40% 60% 40% 60%; transform: rotate(60deg) scale(1.1); }
  66% { border-radius: 30% 70% 50% 50% / 70% 40% 60% 30%; transform: rotate(-30deg) scale(0.95); }
}

@keyframes blobMorph2 {
  0%, 100% { border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%; transform: rotate(-45deg) scale(1.08); }
}

/* Particle Canvas */
.hero-particles {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

/* Split layout container */
.hero-container {
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: 60px;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 0 40px;
}

/* Left content area */
.hero-content {
  flex: 0 0 55%; max-width: 55%;
  text-align: left;
}

/* Staggered reveal animation via CSS custom property */
.hero-stagger {
  opacity: 0; transform: translateY(30px);
  animation: heroStaggerIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.1s + var(--stagger, 0) * 0.15s);
}

@keyframes heroStaggerIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Badge — glassmorphism */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 36px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  position: relative; overflow: hidden;
}

.hero-badge::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: badgeShimmer 4s ease infinite;
}

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

.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 2s infinite; display: inline-block;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--green); }
  50% { opacity: 0.5; box-shadow: 0 0 20px var(--green), 0 0 40px var(--green); }
}

/* Heading — animated gradient */
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: 28px; letter-spacing: -0.04em;
}

.hero-title-line { display: block; }

.hero-title-gradient {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #7c3aed, #00c6ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s ease infinite;
  position: relative;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtitle with typewriter cursor */
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.75;
  max-width: 540px; margin-bottom: 44px;
  min-height: 60px;
}

.typewriter-cursor {
  display: inline-block; color: var(--color-primary);
  font-weight: 300; animation: cursorBlink 0.8s steps(1) infinite;
  margin-left: 1px;
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero Buttons */
.hero-buttons {
  display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 56px;
}

/* Rainbow border CTA button */
.btn-rainbow-border {
  position: relative; padding: 0; border-radius: 52px;
  background: conic-gradient(from 0deg, #00c6ff, #0072ff, #7c3aed, #00d4aa, #00c6ff);
  background-size: 100% 100%;
  animation: rainbowSpin 3s linear infinite;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 25px rgba(0,114,255,0.3), 0 0 80px rgba(0,114,255,0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-rainbow-border:hover {
  box-shadow: 0 6px 35px rgba(0,114,255,0.4), 0 0 100px rgba(0,114,255,0.15);
  transform: translateY(-2px);
  color: #fff;
}

@property --rainbow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rainbowSpin {
  to { --rainbow-angle: 360deg; }
}

.btn-rainbow-inner {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #0062e6, #0072ff);
  border-radius: 50px; color: #fff;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.3px;
  margin: 2px;
  transition: background 0.3s ease;
}

.btn-rainbow-border:hover .btn-rainbow-inner {
  background: linear-gradient(135deg, #0055cc, #0065e6);
}

.btn-arrow {
  display: inline-block; transition: transform 0.3s ease;
  font-size: 18px;
}

.btn-rainbow-border:hover .btn-arrow {
  transform: translateX(4px);
}

/* Glass button */
.btn-glass {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 52px; color: rgba(255,255,255,0.8);
  font-size: 15px; font-weight: 600;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  cursor: pointer; text-decoration: none;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-glass svg { opacity: 0.7; transition: opacity 0.3s; }
.btn-glass:hover svg { opacity: 1; }

/* Trust indicators — floating cards */
.trust-indicators {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 13px; font-weight: 500;
  padding: 10px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

.trust-float {
  animation: trustFloatIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0; transform: translateY(20px);
  animation-delay: calc(0.8s + var(--float-delay, 0s));
}

@keyframes trustFloatIn {
  to { opacity: 1; transform: translateY(0); }
}

.trust-item:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,198,255,0.15);
  transform: translateY(-3px);
  color: rgba(255,255,255,0.7);
}

.trust-icon {
  width: 38px; height: 38px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
  background: rgba(0,198,255,0.1);
  border-color: rgba(0,198,255,0.15);
  box-shadow: 0 4px 12px rgba(0,198,255,0.1);
}

.trust-text { white-space: nowrap; }

/* ===== RIGHT SIDE: IMAGE SHOWCASE ===== */
.hero-showcase {
  flex: 0 0 42%; max-width: 42%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 480px;
  opacity: 0; transform: translateX(40px) scale(0.95);
  animation: showcaseReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes showcaseReveal {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Image Scene Container */
.hero-img-scene {
  position: relative;
  width: 100%; max-width: 460px;
  perspective: 1000px;
  z-index: 2;
}

/* Animated glow ring behind the image */
.hero-img-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 85%; height: 85%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  background: conic-gradient(
    from 0deg,
    rgba(0,114,255,0.35),
    rgba(0,198,255,0.15),
    rgba(124,58,237,0.25),
    rgba(0,212,170,0.2),
    rgba(0,114,255,0.35)
  );
  filter: blur(50px);
  opacity: 0.6;
  animation: glowPulse 6s ease-in-out infinite alternate, glowSpin 12s linear infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes glowSpin {
  to { filter: blur(50px) hue-rotate(30deg); }
}

/* Main hero image */
.hero-img {
  position: relative;
  width: 100%;
  border-radius: 24px;
  z-index: 2;
  animation: imgFloat 5s ease-in-out infinite;
  transition: transform 0.15s ease-out;
  will-change: transform;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.4)) drop-shadow(0 0 30px rgba(0,114,255,0.15));
}

@keyframes imgFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0.5deg); }
}

/* Floating accent badges */
.hero-float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0; transform: scale(0.8);
  white-space: nowrap;
}

/* Badge 1 — Top Right: Verified */
.hero-float-badge-1 {
  top: 5%; right: -10%;
  animation:
    badgePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards,
    badgeHover1 4s ease-in-out 1.5s infinite;
}

/* Badge 2 — Bottom Left: Secure */
.hero-float-badge-2 {
  bottom: 12%; left: -8%;
  animation:
    badgePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards,
    badgeHover2 5s ease-in-out 1.7s infinite;
}

/* Badge 3 — Top Left: Fast Delivery */
.hero-float-badge-3 {
  top: 18%; left: -12%;
  animation:
    badgePopIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards,
    badgeHover3 4.5s ease-in-out 1.9s infinite;
}

.hero-float-badge-icon {
  font-size: 16px; line-height: 1;
}

@keyframes badgePopIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes badgeHover1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-4px, -8px); }
}

@keyframes badgeHover2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -6px); }
}

@keyframes badgeHover3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, 8px); }
}

/* Scroll indicator — mouse style */
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.scroll-mouse {
  width: 26px; height: 42px; border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.2);
  position: relative;
  animation: scrollMouseBob 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.5);
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelMove 2s ease-in-out infinite;
}

@keyframes scrollMouseBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes scrollWheelMove {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

.scroll-text {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 2px;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 36px 0;
}

.stats-container {
  display: flex; align-items: center; justify-content: center;
  gap: 60px; flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px; font-weight: 800; color: var(--text-heading);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block; font-size: 12px; font-weight: 500;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1.5px; margin-top: 4px;
}

/* ========== WELCOME — FULLY ANIMATED ========== */
.welcome-section {
  padding: 130px 0; background: var(--bg-primary);
  overflow: hidden; position: relative;
}

/* Animated gradient mesh bg */
.welcome-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 5% 60%, rgba(0,114,255,0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 95% 20%, rgba(0,198,255,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0,212,170,0.03) 0%, transparent 40%);
  pointer-events: none;
  animation: meshShift 12s ease-in-out infinite;
}

@keyframes meshShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Floating bg particles */
.welcome-section::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  top: 0; left: 0;
  background:
    radial-gradient(2px 2px at 10% 30%, rgba(0,114,255,0.15), transparent),
    radial-gradient(2px 2px at 80% 70%, rgba(0,198,255,0.12), transparent),
    radial-gradient(2px 2px at 30% 80%, rgba(0,212,170,0.10), transparent),
    radial-gradient(2px 2px at 60% 20%, rgba(0,114,255,0.12), transparent),
    radial-gradient(2px 2px at 90% 40%, rgba(0,198,255,0.10), transparent),
    radial-gradient(1.5px 1.5px at 20% 55%, rgba(0,114,255,0.08), transparent),
    radial-gradient(1.5px 1.5px at 70% 45%, rgba(0,212,170,0.08), transparent);
  animation: particleDrift 20s linear infinite;
  pointer-events: none;
}

@keyframes particleDrift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

.welcome-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}

/* Animated accent bar with shimmer */
.welcome-accent-bar {
  width: 60px; height: 5px;
  background: var(--gradient-primary);
  border-radius: 3px; margin-bottom: 28px;
  position: relative; overflow: hidden;
}
.welcome-accent-bar::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
.welcome-accent-bar::after {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border-radius: 3px;
  background: var(--gradient-primary); filter: blur(10px); opacity: 0.6;
  z-index: -1;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Heading with animated gradient */
.welcome-heading {
  font-size: clamp(30px, 3.8vw, 48px); font-weight: 400;
  color: var(--text-heading); line-height: 1.2; margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.welcome-bold {
  font-weight: 900;
  background: linear-gradient(135deg, #0072ff, #00c6ff, #00d4aa, #0072ff);
  background-size: 300% 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.welcome-text {
  font-size: 16px; color: var(--text-body); line-height: 1.9;
  margin-bottom: 42px; max-width: 520px;
}

/* Feature Cards — Horizontal with floating icons */
.welcome-features {
  display: flex; flex-direction: column;
  gap: 16px; margin-bottom: 42px;
}

.welcome-feature {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  cursor: default;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Step number badge */
.feature-step {
  position: absolute; top: 12px; right: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: 32px; line-height: 1;
  color: rgba(0,114,255,0.06);
  transition: all 0.4s ease;
}

.welcome-feature:hover .feature-step {
  color: rgba(0,114,255,0.12);
  transform: scale(1.1);
}

/* Accent colors per card */
.welcome-feature[data-accent="blue"] { border-left: 4px solid #0072ff; }
.welcome-feature[data-accent="cyan"] { border-left: 4px solid #00c6ff; }
.welcome-feature[data-accent="teal"] { border-left: 4px solid #00d4aa; }

/* Icon wrapper with ring */
.feature-icon-wrap {
  flex-shrink: 0; position: relative;
  width: 64px; height: 64px;
}

.feature-icon-wrap::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(0,114,255,0.1);
  animation: spin 12s linear infinite;
}

.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accent-specific icon gradients */
[data-accent="blue"] .feature-icon {
  background: linear-gradient(135deg, #0072ff, #0060dd);
  box-shadow: 0 6px 20px rgba(0,114,255,0.25);
}
[data-accent="cyan"] .feature-icon {
  background: linear-gradient(135deg, #00c6ff, #0090e0);
  box-shadow: 0 6px 20px rgba(0,198,255,0.25);
}
[data-accent="teal"] .feature-icon {
  background: linear-gradient(135deg, #00d4aa, #00b090);
  box-shadow: 0 6px 20px rgba(0,212,170,0.25);
}

.feature-icon svg { stroke: #fff !important; }

.welcome-feature:hover .feature-icon {
  transform: scale(1.12) rotate(-5deg);
}

[data-accent="blue"]:hover .feature-icon { box-shadow: 0 10px 30px rgba(0,114,255,0.35); }
[data-accent="cyan"]:hover .feature-icon { box-shadow: 0 10px 30px rgba(0,198,255,0.35); }
[data-accent="teal"]:hover .feature-icon { box-shadow: 0 10px 30px rgba(0,212,170,0.35); }

/* Text area */
.feature-text { flex: 1; min-width: 0; }

.feature-title {
  font-size: 17px; font-weight: 800; color: var(--text-heading);
  margin-bottom: 5px; letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.6;
}

/* Animated bottom progress bar */
.feature-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0;
  border-radius: 0 3px 0 0;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-accent="blue"] .feature-progress { background: linear-gradient(90deg, #0072ff, #00c6ff); }
[data-accent="cyan"] .feature-progress { background: linear-gradient(90deg, #00c6ff, #00d4aa); }
[data-accent="teal"] .feature-progress { background: linear-gradient(90deg, #00d4aa, #00c6ff); }

.welcome-feature:hover .feature-progress { width: 100%; }

/* Card hover effects */
.welcome-feature:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0,114,255,0.08);
  border-color: transparent;
}

[data-accent="blue"]:hover { background: linear-gradient(135deg, rgba(0,114,255,0.03), #fff); }
[data-accent="cyan"]:hover { background: linear-gradient(135deg, rgba(0,198,255,0.03), #fff); }
[data-accent="teal"]:hover { background: linear-gradient(135deg, rgba(0,212,170,0.03), #fff); }

/* Stagger animation */
.welcome-feature:nth-child(1) { animation: cardSlideRight 0.5s ease 0.1s both; }
.welcome-feature:nth-child(2) { animation: cardSlideRight 0.5s ease 0.25s both; }
.welcome-feature:nth-child(3) { animation: cardSlideRight 0.5s ease 0.4s both; }

@keyframes cardSlideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== CTA Buttons — with shine sweep ===== */
.welcome-cta-row {
  display: flex; gap: 14px; flex-wrap: wrap;
}

.welcome-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600;
  font-size: 14px; color: #fff; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer; border: none; position: relative; overflow: hidden;
}

/* Shine sweep on button */
.welcome-btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}
.welcome-btn:hover::after { left: 130%; }

.welcome-btn-blue {
  background: linear-gradient(135deg, #0072ff, #0060dd);
  box-shadow: 0 4px 18px rgba(0,114,255,0.3);
}
.welcome-btn-blue:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,114,255,0.35); color: #fff;
}

.welcome-btn-green {
  background: linear-gradient(135deg, #25d366, #1fb855);
  box-shadow: 0 4px 18px rgba(37,211,102,0.3);
}
.welcome-btn-green:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37,211,102,0.35); color: #fff;
}

.welcome-btn-dark {
  background: linear-gradient(135deg, #1a1f36, #2d3250);
  box-shadow: 0 4px 18px rgba(26,31,54,0.3);
}
.welcome-btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(26,31,54,0.35); color: #fff;
}

/* ===== RIGHT COLUMN — Animated Circle ===== */
.welcome-right {
  position: relative; display: flex; justify-content: center;
  align-items: center;
}

.welcome-image-wrapper {
  position: relative; width: 440px; height: 440px;
  display: flex; align-items: center; justify-content: center;
  animation: wrapperFloat 6s ease-in-out infinite;
}

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

/* Orbiting Rings — 3 layers */
.orbit-ring {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-1 {
  width: 100%; height: 100%;
  border: 2px dashed rgba(0,114,255,0.12);
  animation: spin 28s linear infinite;
}
.orbit-ring-1::before {
  content: ''; position: absolute; top: -7px; left: 50%;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(0,114,255,0.5), 0 0 40px rgba(0,114,255,0.2);
  transform: translateX(-50%);
}
.orbit-ring-1::after {
  content: ''; position: absolute; bottom: -5px; left: 30%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #00d4aa;
  box-shadow: 0 0 10px rgba(0,212,170,0.5);
}

.orbit-ring-2 {
  width: 118%; height: 118%;
  top: -9%; left: -9%;
  border-top: 3px solid rgba(0,198,255,0.2);
  border-right: 3px solid rgba(0,114,255,0.12);
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
  animation: spin 18s linear infinite reverse;
}
.orbit-ring-2::before {
  content: ''; position: absolute; top: 12%; right: -3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 0 14px rgba(0,198,255,0.5);
}

.orbit-ring-3 {
  width: 136%; height: 136%;
  top: -18%; left: -18%;
  border: 1.5px dotted rgba(0,114,255,0.06);
  animation: spin 45s linear infinite;
}
.orbit-ring-3::before {
  content: ''; position: absolute; bottom: 20%; left: -4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,114,255,0.25);
  box-shadow: 0 0 8px rgba(0,114,255,0.3);
}

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

/* Main Image Circle — rotating gradient border */
.welcome-circle {
  width: 350px; height: 350px;
  border-radius: 50%; position: relative; z-index: 2;
  padding: 6px;
  background: linear-gradient(135deg, #0072ff, #00c6ff, #00d4aa, #0072ff);
  background-size: 300% 300%;
  animation: circleRotateGrad 5s ease infinite;
  box-shadow:
    0 0 0 12px rgba(0,114,255,0.06),
    0 0 0 24px rgba(0,114,255,0.03),
    0 30px 70px rgba(0,114,255,0.14);
  transition: transform 0.5s ease;
}

.welcome-circle:hover { transform: scale(1.04); }

@keyframes circleRotateGrad {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Inner circle with image */
.welcome-circle::before {
  content: ''; position: absolute; inset: 6px;
  border-radius: 50%; background: #fff; z-index: 0;
}

.welcome-circle-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 50%; position: relative; z-index: 1;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.welcome-circle:hover .welcome-circle-img {
  transform: scale(1.06);
}

/* Breathing glow ring behind circle */
.welcome-circle::after {
  content: ''; position: absolute; inset: -20px;
  border-radius: 50%; z-index: -1;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(0,114,255,0.08), rgba(0,198,255,0.04)) padding-box,
              linear-gradient(135deg, rgba(0,114,255,0.15), rgba(0,212,170,0.1)) border-box;
  animation: breatheRing 3s ease-in-out infinite;
}

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

/* Experience Badge */
.experience-badge {
  position: absolute; top: -5px; right: -15px;
  z-index: 5; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 108px; height: 108px;
  background: linear-gradient(160deg, #0f1724, #1a2332);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: #fff; text-align: center;
  animation: badgePulse 3s ease-in-out infinite, badgeGlow 4s ease-in-out infinite;
}

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

@keyframes badgeGlow {
  0%, 100% { filter: drop-shadow(0 5px 15px rgba(0,114,255,0.15)); }
  50% { filter: drop-shadow(0 8px 25px rgba(0,114,255,0.3)); }
}

.exp-number {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900;
  font-size: 30px; line-height: 1;
  background: linear-gradient(135deg, #00c6ff, #00d4aa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.exp-text {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; line-height: 1.3; margin-top: 3px;
  color: rgba(255,255,255,0.7);
}

/* Floating accent dots */
.float-dot {
  position: absolute; border-radius: 50%; z-index: 4;
}

.float-dot-1 {
  width: 18px; height: 18px;
  background: var(--gradient-primary);
  bottom: 8%; left: -8%;
  box-shadow: 0 0 16px rgba(0,114,255,0.4);
  animation: float 5s ease-in-out infinite, dotPulse 2s ease-in-out infinite;
}

.float-dot-2 {
  width: 12px; height: 12px;
  background: #00d4aa;
  top: 18%; left: -14%;
  box-shadow: 0 0 12px rgba(0,212,170,0.4);
  animation: float 4s ease-in-out 1s infinite reverse, dotPulse 2.5s ease-in-out 0.5s infinite;
}

.float-dot-3 {
  width: 9px; height: 9px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  bottom: 22%; right: -10%;
  box-shadow: 0 0 10px rgba(0,114,255,0.3);
  animation: float 6s ease-in-out 2s infinite, dotPulse 3s ease-in-out 1s infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}


/* ========== PROOF TYPES — MATCHES LIVE SITE ========== */
.proof-types-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.proof-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

/* Left column — stacked cards */
.proof-types-left {
  display: flex; flex-direction: column;
}

/* Base card */
.proof-type-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 32px 30px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* Light variant (first card) */
.proof-type-light {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  z-index: 2;
}

.proof-type-light h3 { color: #0a1930; font-size: 20px; }
.proof-type-light p { color: #5a6a7e; }
.proof-type-light .proof-type-icon {
  color: #fff;
  background: linear-gradient(135deg, #0a1930, #162a4e);
  box-shadow: 0 4px 16px rgba(10,25,48,0.2);
}

/* Dark variant */
.proof-type-dark {
  background: #0a1930;
}

.proof-type-dark h3 { color: #fff; font-size: 20px; }
.proof-type-dark p { color: rgba(255,255,255,0.55); }
.proof-type-dark .proof-type-icon {
  color: #fff;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 4px 16px rgba(0,114,255,0.25);
}

/* Subtle divider between dark cards */
.proof-type-dark + .proof-type-dark {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Icon circle */
.proof-type-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
}

.proof-type-card:hover .proof-type-icon {
  transform: scale(1.08) rotate(-3deg);
}

/* Text */
.proof-type-text { flex: 1; }

.proof-type-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  margin-bottom: 10px; letter-spacing: -0.01em;
}

.proof-type-text p {
  font-size: 14.5px; line-height: 1.7;
}

/* Arrow — filled play triangle (matching live site) */
.proof-type-arrow {
  flex-shrink: 0; align-self: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(10,25,48,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #0a1930;
  transition: all 0.4s ease;
  cursor: pointer;
}

.proof-type-arrow svg {
  transition: transform 0.3s ease;
}

.proof-type-light:hover .proof-type-arrow {
  background: #0a1930; color: #fff;
  box-shadow: 0 6px 20px rgba(10,25,48,0.2);
}

.proof-type-light:hover .proof-type-arrow svg {
  transform: translateX(2px);
}

/* Dark card arrows */
.proof-type-dark .proof-type-arrow {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}

.proof-type-dark:hover .proof-type-arrow {
  background: rgba(0,198,255,0.15); color: #00c6ff;
}

.proof-type-dark:hover .proof-type-arrow svg {
  transform: translateX(2px);
}

/* Active tab arrow */
.proof-type-card.active .proof-type-arrow {
  color: #0072ff;
}

.proof-type-dark.active .proof-type-arrow {
  background: rgba(0,198,255,0.15); color: #00c6ff;
}

/* Card hover */
.proof-type-card:hover { transform: translateX(4px); }

.proof-type-dark:hover {
  background: #0c1e38;
}

/* Animated left accent line on dark cards */
.proof-type-dark::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.proof-type-dark:hover::before { height: 100%; }

/* ===== Right Column — Switchable Panels ===== */
.proof-types-right {
  display: flex; align-items: stretch;
  position: relative;
}

/* Panel — hidden by default */
.promo-panel {
  background: #fff;
  overflow: hidden;
  display: none; flex-direction: column;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  width: 100%;
  position: relative;
  animation: panelFadeIn 0.4s ease;
  min-height: 480px;
}

/* Active panel */
.promo-panel.active {
  display: flex;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.promo-panel:hover {
  box-shadow: 0 12px 40px rgba(0,114,255,0.08);
}

/* ===== Tab Active States ===== */
.proof-type-card { cursor: pointer; }

/* Light card active state */
.proof-type-card.proof-type-light.active {
  border-left: 4px solid #0072ff;
  background: #fff;
  box-shadow: 0 6px 28px rgba(0,114,255,0.1);
}

/* Dark card active state */
.proof-type-card.proof-type-dark.active {
  background: #0c1e38;
  border-left: 4px solid #00c6ff;
}

.proof-type-card.proof-type-dark.active::before {
  height: 100%;
}

/* Cyan accent bar at top */
.promo-accent-bar {
  height: 6px;
  background: linear-gradient(90deg, #00c6ff, #0072ff, #00c6ff);
  background-size: 200% 100%;
  animation: barShift 3s ease infinite;
  flex-shrink: 0;
  position: relative; z-index: 2;
}

@keyframes barShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Image fills entire panel behind content */
.promo-image {
  position: absolute; inset: 0;
  z-index: 0; overflow: hidden;
}

.promo-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-panel:hover .promo-image img {
  transform: scale(1.06);
}

/* Dark gradient overlay on image */
.promo-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.88) 40%,
    rgba(255,255,255,0.3) 70%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
  transition: all 0.4s ease;
}

.promo-panel:hover .promo-image::after {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.9) 42%,
    rgba(255,255,255,0.25) 72%,
    rgba(0,0,0,0.2) 100%
  );
}

/* Content card — overlaps onto the image */
.promo-content {
  position: relative; z-index: 3;
  padding: 32px 30px 28px;
  flex-shrink: 0;
}

.promo-heading {
  font-family: 'Dancing Script', 'Segoe Script', cursive;
  font-size: 32px; font-weight: 700;
  color: #0a1930; line-height: 1.25;
  margin-bottom: 18px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.promo-highlight {
  font-size: 15px; color: #0a1930;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}

.promo-highlight strong {
  font-weight: 800;
  color: #0072ff;
}

.promo-desc {
  font-size: 14.5px; color: #3a4a5e;
  line-height: 1.75; margin-bottom: 24px;
  font-family: 'Open Sans', sans-serif;
}

.promo-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 8px;
  background: linear-gradient(135deg, #0072ff, #0060dd);
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,114,255,0.25);
}

.promo-btn::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}

.promo-btn:hover::before { opacity: 1; }

.promo-btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.promo-btn:hover::after { left: 130%; }

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,114,255,0.35);
  color: #fff;
}

.promo-btn span {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.promo-btn:hover span { transform: translateX(5px); }

/* Decorative floating dots on panel */
.promo-panel::after {
  content: '';
  position: absolute; bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  border: 2px solid rgba(0,198,255,0.15);
  border-radius: 50%;
  z-index: 2;
  animation: floatDot 6s ease-in-out infinite;
}

@keyframes floatDot {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -12px); }
}

/* ========== SERVICES ========== */
.services-section { padding: 100px 0; background: var(--bg-secondary); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.service-card {
  background: #0f1724;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}

.card-accent {
  height: 4px;
  background: var(--gradient-primary);
  width: 60px;
  margin-left: 0;
  border-radius: 0 0 4px 0;
}

.card-body {
  padding: 32px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 20px; font-weight: 800; margin-bottom: 14px;
  color: #ffffff; padding: 0; line-height: 1.3;
}

.service-description {
  font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 24px;
  line-height: 1.75; padding: 0; flex: 1;
}

.card-icon-box {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(0,198,255,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .card-icon-box {
  background: rgba(0,198,255,0.18);
  transform: scale(1.05);
}

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700;
  color: #00c6ff; padding: 0;
  transition: gap var(--transition);
  text-decoration: none;
  background: none; -webkit-background-clip: unset;
  -webkit-text-fill-color: unset; background-clip: unset;
}
.service-link:hover { gap: 12px; color: #fff; }

/* ========== POA SERVICES — FORM SECTION ========== */
.poa-services-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative; overflow: hidden;
}

/* Header */
.poa-header { text-align: center; margin-bottom: 50px; }

.poa-accent-line {
  width: 40px; height: 4px; border-radius: 2px;
  background: #00c6ff; margin: 0 auto 18px;
}

.poa-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  color: #0a1930; margin-bottom: 4px;
}

.poa-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px); font-weight: 400;
  color: #0a1930; margin-bottom: 18px;
}

.poa-desc {
  font-size: 15px; color: #5a6a7e; line-height: 1.75;
  max-width: 580px; margin: 0 auto;
  font-style: italic;
}

/* 3-Column Grid */
.poa-grid {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ===== Left Tabs — Premium Design ===== */
.poa-tabs {
  display: flex; flex-direction: column; gap: 10px;
}

.poa-tab {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 16px;
  cursor: pointer;
  border-radius: 14px;
  background: #fff;
  border: 1.5px solid #eef1f5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.poa-tab::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 4px; height: 0;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
  border-radius: 0 4px 4px 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.poa-tab:hover {
  border-color: rgba(0,114,255,0.15);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0,114,255,0.08);
}

.poa-tab:hover::before { height: 100%; }

.poa-tab-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.poa-tab-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,114,255,0.08), rgba(0,198,255,0.06));
  display: flex; align-items: center; justify-content: center;
  color: #0072ff; flex-shrink: 0;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,114,255,0.08);
}

.poa-tab:hover .poa-tab-icon {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,114,255,0.12);
}

.poa-tab-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: #3a4a5e;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.poa-tab-text strong {
  font-weight: 800; color: #0a1930;
  display: block; font-size: 15px;
  transition: color 0.3s ease;
}

.poa-tab-arrow {
  margin-left: auto; color: #c8d0da;
  transition: all 0.4s ease;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}

.poa-tab:hover .poa-tab-arrow {
  color: #0072ff;
  background: rgba(0,114,255,0.06);
  transform: translateX(2px);
}

/* Active tab — Dark Navy Premium */
.poa-tab.active {
  background: linear-gradient(135deg, #0a1930, #0f2240);
  border-color: transparent;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(10,25,48,0.25);
  transform: translateX(6px);
}

.poa-tab.active::before {
  height: 100%;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
}

.poa-tab.active .poa-tab-num {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  box-shadow: 0 2px 10px rgba(0,198,255,0.3);
}

.poa-tab.active .poa-tab-icon {
  background: rgba(0,198,255,0.12);
  border-color: rgba(0,198,255,0.2);
  color: #00c6ff;
  box-shadow: 0 4px 16px rgba(0,198,255,0.15);
}

.poa-tab.active .poa-tab-text { color: rgba(255,255,255,0.65); }
.poa-tab.active .poa-tab-text strong { color: #fff; }

.poa-tab.active .poa-tab-arrow {
  color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateX(3px);
}

/* ===== Center Form — Premium Design ===== */
.poa-form-area {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1.5px solid #eef1f5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

/* Decorative corner dots */
.poa-form-area::before {
  content: '';
  position: absolute; top: 16px; right: 16px;
  width: 50px; height: 50px;
  background: radial-gradient(circle, rgba(0,114,255,0.08) 1px, transparent 1px);
  background-size: 8px 8px;
}

.poa-form-area::after {
  content: '';
  position: absolute; bottom: 16px; left: 16px;
  width: 40px; height: 40px;
  background: radial-gradient(circle, rgba(0,198,255,0.06) 1px, transparent 1px);
  background-size: 8px 8px;
}

.poa-form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px; font-weight: 900;
  color: #0a1930; line-height: 1.2;
  margin-bottom: 6px;
  position: relative; display: inline-block;
}

.poa-form-title .poa-form-label {
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accent underline */
.poa-form-title::after {
  content: '';
  position: absolute; bottom: -6px; left: 0;
  width: 50px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.poa-form-desc {
  font-size: 14px; color: #6a7a8e;
  margin-bottom: 28px; line-height: 1.65;
  margin-top: 18px;
}

.poa-form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}

/* Input fields — premium floating style */
.poa-form input,
.poa-form textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e2e7ed;
  border-radius: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; color: #0a1930;
  background: #f8fafc;
  transition: all 0.35s ease;
  outline: none;
  box-sizing: border-box;
}

.poa-form input:hover,
.poa-form textarea:hover {
  border-color: #c8d4e0;
  background: #fff;
}

.poa-form input:focus,
.poa-form textarea:focus {
  border-color: #0072ff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,114,255,0.06), 0 4px 12px rgba(0,114,255,0.06);
}

.poa-form input::placeholder,
.poa-form textarea::placeholder {
  color: #a0aab4; font-size: 13.5px;
}

.poa-form textarea {
  resize: vertical; min-height: 90px;
  margin-bottom: 18px;
}

/* Captcha — frosted pill */
.poa-captcha {
  margin-bottom: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f0f4f8, #f8fafc);
  border-radius: 14px;
  border: 1px solid #e8ecf1;
}

.poa-captcha label {
  display: block; font-size: 12px;
  font-weight: 700; color: #0a1930;
  margin-bottom: 10px; letter-spacing: 0.5px;
  text-transform: uppercase;
}

.poa-captcha-row {
  display: flex; align-items: center; gap: 12px;
}

.captcha-question {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #0072ff;
  background: #fff;
  padding: 8px 16px; border-radius: 10px;
  border: 1.5px solid #e2e7ed;
  min-width: auto;
}

.captcha-input {
  width: 80px !important; padding: 10px 14px !important;
  border: 1.5px solid #e2e7ed !important;
  border-radius: 10px !important;
  font-size: 16px !important; text-align: center;
  font-weight: 600 !important; color: #0a1930 !important;
  background: #fff !important;
  transition: all 0.3s ease !important;
}

.captcha-input:focus {
  border-color: #0072ff !important;
  box-shadow: 0 0 0 4px rgba(0,114,255,0.06) !important;
}

/* Submit Button — Gradient Premium */
.poa-submit-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; width: 100%;
  padding: 16px 28px; border: none;
  border-radius: 14px; cursor: pointer;
  background: linear-gradient(135deg, #0072ff, #0060dd);
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,114,255,0.2);
  letter-spacing: 0.3px;
}

.poa-submit-btn svg {
  transition: transform 0.3s ease;
}

.poa-submit-btn:hover svg {
  transform: translateX(3px) translateY(-2px);
}

.poa-submit-btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.poa-submit-btn:hover::after { left: 130%; }

.poa-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,114,255,0.3);
}

/* ===== Right Image ===== */
.poa-image-col {
  display: flex; align-items: center; justify-content: center;
  padding-top: 20px;
}

.poa-image-frame {
  position: relative;
  width: 300px; height: 400px;
}

.poa-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  border-radius: 20px;
  clip-path: polygon(10% 0%, 100% 0%, 100% 85%, 90% 100%, 0% 100%, 0% 15%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: absolute; top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.poa-image-frame img.active {
  opacity: 1;
  z-index: 1;
}

/* Decorative accent behind image */
.poa-image-accent {
  position: absolute; top: -10px; right: -10px;
  width: 120px; height: 120px;
  border: 3px solid rgba(0,198,255,0.2);
  border-radius: 0 20px 0 0;
  z-index: -1;
}

.poa-image-circle {
  position: absolute; bottom: 20px; left: -20px;
  width: 80px; height: 80px;
  border: 3px solid rgba(0,114,255,0.1);
  border-radius: 50%;
  z-index: -1;
  animation: floatDot 6s ease-in-out infinite;
}

/* ========== HOW TO GET POA QUICKLY ========== */
.quick-poa-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1930 0%, #0f2240 100%);
  position: relative; overflow: hidden;
}

/* Subtle bg pattern */
.quick-poa-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0,198,255,0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(0,114,255,0.05) 0%, transparent 50%);
}

.quick-poa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ===== Left Image ===== */
.quick-poa-image { position: relative; }

.quick-poa-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.quick-poa-img-wrap img {
  width: 100%; height: 400px;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}

.quick-poa-img-wrap:hover img {
  transform: scale(1.05);
}

/* Floating badge */
.quick-poa-badge {
  position: absolute; bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #0a1930;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.quick-poa-badge svg { color: #00c6ff; }

/* Decorative elements */
.quick-poa-float-circle {
  position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 3px solid rgba(0,198,255,0.15);
  border-radius: 50%;
  animation: floatDot 6s ease-in-out infinite;
}

.quick-poa-float-dots {
  position: absolute; bottom: -10px; left: -15px;
  width: 60px; height: 60px;
  background: radial-gradient(circle, rgba(0,198,255,0.2) 1px, transparent 1px);
  background-size: 10px 10px;
}

/* ===== Right Content ===== */
.quick-poa-content { position: relative; }

.quick-poa-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 4px;
  color: #00c6ff;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.quick-poa-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900; color: #fff;
  line-height: 1.25; margin-bottom: 16px;
}

.quick-poa-heading span {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quick-poa-intro {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.75; margin-bottom: 32px;
}

/* Steps */
.quick-steps {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 36px;
}

.quick-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}

.quick-step::before {
  content: ''; position: absolute;
  left: 0; top: 0; width: 3px; height: 0;
  background: linear-gradient(180deg, #00c6ff, #0072ff);
  transition: height 0.4s ease;
}

.quick-step:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.quick-step:hover::before { height: 100%; }

.quick-step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  width: 32px; height: 32px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,114,255,0.25);
}

.quick-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #00c6ff; flex-shrink: 0;
  transition: all 0.3s ease;
}

.quick-step:hover .quick-step-icon {
  background: rgba(0,198,255,0.15);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0,198,255,0.15);
}

.quick-step-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}

.quick-step-text p {
  font-size: 13.5px; color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Staggered animation delays */
.quick-step:nth-child(1) { transition-delay: 0s; }
.quick-step:nth-child(2) { transition-delay: 0.05s; }
.quick-step:nth-child(3) { transition-delay: 0.1s; }
.quick-step:nth-child(4) { transition-delay: 0.15s; }

/* CTA Button */
.quick-poa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 14px;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 24px rgba(0,114,255,0.3);
  position: relative; overflow: hidden;
}

.quick-poa-cta::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.quick-poa-cta:hover::after { left: 130%; }

.quick-poa-cta svg {
  transition: transform 0.3s ease;
}

.quick-poa-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,114,255,0.4);
  color: #fff;
}

.quick-poa-cta:hover svg {
  transform: translateX(5px);
}

/* ========== HOW IT WORKS — LUXURIOUS ========== */
.how-it-works-section {
  padding: 120px 0; position: relative; overflow: hidden;
  background: linear-gradient(170deg, #0a0f1e 0%, #0f1724 40%, #111b2e 100%);
}

/* Section heading override for dark bg */
.how-it-works-section .section-overline {
  background: linear-gradient(135deg, #00c6ff, #00d4aa);
  -webkit-background-clip: text; background-clip: text;
}
.how-it-works-section .section-title { color: #fff; }
.how-it-works-section .section-subtitle { color: rgba(255,255,255,0.45); }

/* Animated bg particles */
.how-it-works-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(0,198,255,0.15), transparent),
    radial-gradient(1.5px 1.5px at 85% 75%, rgba(0,114,255,0.12), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(0,212,170,0.08), transparent),
    radial-gradient(1px 1px at 25% 80%, rgba(0,198,255,0.06), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(0,114,255,0.08), transparent);
  animation: particleDrift 25s linear infinite;
  pointer-events: none;
}

.steps-wrapper { position: relative; }

/* Animated timeline line behind cards */
.steps-timeline-line {
  position: absolute; top: 42px; left: 10%; right: 10%;
  height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(0,198,255,0.15), rgba(0,114,255,0.25), rgba(0,198,255,0.15), transparent);
  overflow: hidden;
}
.steps-timeline-line::after {
  content: ''; position: absolute; top: 0; left: -40%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,198,255,0.6), transparent);
  animation: timelineSweep 4s ease-in-out infinite;
}

@keyframes timelineSweep {
  0% { left: -40%; }
  100% { left: 100%; }
}

.steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px; position: relative; z-index: 1;
}

/* Step Card */
.step-card {
  text-align: center; position: relative;
  padding: 0 6px;
}

/* Stagger entrance */
.step-card[data-step="1"] { animation: stepReveal 0.6s ease 0.1s both; }
.step-card[data-step="2"] { animation: stepReveal 0.6s ease 0.25s both; }
.step-card[data-step="3"] { animation: stepReveal 0.6s ease 0.4s both; }
.step-card[data-step="4"] { animation: stepReveal 0.6s ease 0.55s both; }
.step-card[data-step="5"] { animation: stepReveal 0.6s ease 0.7s both; }

@keyframes stepReveal {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Step Number wrapper */
.step-number-wrap {
  width: 84px; height: 84px; margin: 0 auto 20px;
  position: relative; display: flex; align-items: center; justify-content: center;
}

/* Orbiting ring around number */
.step-orbit {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(0,198,255,0.15);
  animation: spin 15s linear infinite;
}
.step-orbit::before {
  content: ''; position: absolute; top: -4px; left: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #00c6ff; transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,198,255,0.6);
}

.step-card:nth-child(even) .step-orbit { animation-direction: reverse; }
.step-card:nth-child(even) .step-orbit::before { background: #00d4aa; box-shadow: 0 0 10px rgba(0,212,170,0.6); }

/* Step Number circle */
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 24px;
  color: #fff; position: relative; z-index: 2;
  background: linear-gradient(135deg, #0072ff, #00c6ff);
  box-shadow: 0 8px 30px rgba(0,114,255,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0,114,255,0.4), 0 0 0 6px rgba(0,198,255,0.1);
}

/* Connector arrows */
.step-connector {
  position: absolute; top: 42px; right: -18px;
  width: 36px; height: 12px; z-index: 3;
  color: rgba(0,198,255,0.3);
  animation: connectorPulse 2s ease-in-out infinite;
}

.step-card:last-child .step-connector { display: none; }

@keyframes connectorPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(4px); }
}

/* Step Content card */
.step-content {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; padding: 24px 16px 22px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}

/* Gradient border on hover */
.step-content::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: 18px; padding: 1px;
  background: linear-gradient(135deg, rgba(0,198,255,0.2), rgba(0,114,255,0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s ease;
}

/* Bottom glow line */
.step-content::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0,198,255,0.4), transparent);
  opacity: 0; transition: all 0.5s ease;
}

.step-card:hover .step-content {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(0,114,255,0.05);
  border-color: transparent;
}
.step-card:hover .step-content::before { opacity: 1; }
.step-card:hover .step-content::after { opacity: 1; left: 10%; right: 10%; }

/* Step icon box */
.step-icon-box {
  width: 48px; height: 48px; margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #00c6ff;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon-box {
  background: rgba(0,198,255,0.12);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0,198,255,0.15);
}

.step-title {
  font-size: 16px; font-weight: 800; margin-bottom: 8px;
  color: #fff; letter-spacing: -0.01em;
}

.step-description {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.65; padding: 0 4px;
}

/* ========== REVIEWS ========== */
.reviews-section { padding: 100px 0; background: var(--bg-secondary); }

.rating-summary {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 40px; background: var(--bg-card);
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  max-width: 500px; margin: 0 auto 50px; box-shadow: var(--shadow-sm);
}

.rating-stars { font-size: 28px; letter-spacing: 3px; margin-bottom: 8px; }
.star { color: var(--gold); }
.star.half { opacity: 0.6; }
.star.dim { color: #dfe3ea; }

.rating-text { font-size: 15px; font-weight: 600; color: var(--text-heading); text-align: center; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); padding: 32px;
  transition: all var(--transition); position: relative;
  box-shadow: var(--shadow-sm);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-color: var(--border-hover); }

.review-card::before {
  content: '\201C'; position: absolute; top: 16px; right: 24px;
  font-size: 60px; font-family: Georgia, serif;
  color: rgba(0,114,255,0.06); line-height: 1;
}

.review-stars { font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }

.review-text {
  font-size: 14px; color: var(--text-body); line-height: 1.75;
  font-style: italic; margin-bottom: 20px; position: relative; z-index: 1;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 14px; flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; color: var(--text-heading); display: block; }
.author-location { font-size: 12px; color: var(--text-muted); display: block; }

/* ========== CTA BANNER — PREMIUM ========== */
.cta-banner {
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #020617 0%, #0a1628 35%, #0f172a 65%, #1a1040 100%);
  position: relative; overflow: hidden;
}

/* Aurora sweeps */
.cta-aurora {
  position: absolute; pointer-events: none; z-index: 0;
  filter: blur(80px); opacity: 0.5;
}

.cta-aurora-1 {
  width: 600px; height: 350px; top: -15%; left: -5%;
  background: linear-gradient(135deg, rgba(0,114,255,0.25) 0%, rgba(0,198,255,0.1) 50%, transparent 100%);
  border-radius: 50%;
  animation: ctaAurora1 10s ease-in-out infinite alternate;
}

.cta-aurora-2 {
  width: 500px; height: 300px; bottom: -10%; right: -5%;
  background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(0,212,170,0.1) 60%, transparent 100%);
  border-radius: 50%;
  animation: ctaAurora2 12s ease-in-out infinite alternate;
}

@keyframes ctaAurora1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  100% { transform: translate(40px, 20px) scale(1.2); opacity: 0.6; }
}

@keyframes ctaAurora2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.25; }
  100% { transform: translate(-30px, -15px) scale(1.15); opacity: 0.5; }
}

/* Dot grid */
.cta-grid-dots {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

/* Floating geometric shapes */
.cta-shape {
  position: absolute; pointer-events: none; z-index: 1;
  border: 1.5px solid rgba(255,255,255,0.06);
}

.cta-shape-1 {
  width: 80px; height: 80px; border-radius: 18px;
  top: 12%; left: 8%;
  animation: ctaShapeFloat 18s linear infinite;
}

.cta-shape-2 {
  width: 50px; height: 50px; border-radius: 50%;
  bottom: 15%; right: 10%;
  border-color: rgba(0,198,255,0.1);
  animation: ctaShapeFloat 14s linear infinite reverse;
}

.cta-shape-3 {
  width: 30px; height: 30px; border-radius: 8px;
  top: 60%; left: 85%;
  border-color: rgba(124,58,237,0.1);
  animation: ctaShapeFloat 20s linear infinite;
  animation-delay: -5s;
}

@keyframes ctaShapeFloat {
  0% { transform: rotate(0deg) translateY(0); }
  25% { transform: rotate(90deg) translateY(-10px); }
  50% { transform: rotate(180deg) translateY(0); }
  75% { transform: rotate(270deg) translateY(10px); }
  100% { transform: rotate(360deg) translateY(0); }
}

/* Container */
.cta-container {
  position: relative; z-index: 5; text-align: center;
  max-width: 720px; margin: 0 auto; padding: 0 24px;
}

/* Overline badge */
.cta-overline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px; margin-bottom: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.65);
  letter-spacing: 1.5px; text-transform: uppercase;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}

.cta-overline-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); display: inline-block;
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s infinite;
}

/* Title */
.cta-title {
  font-size: clamp(30px, 4.5vw, 50px);
  color: #fff; margin-bottom: 20px;
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}

.cta-title-gradient {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #7c3aed);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s ease infinite;
}

/* Subtitle */
.cta-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.5);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.75;
}

/* Stats row */
.cta-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 44px; flex-wrap: wrap;
}

.cta-stat { text-align: center; }

.cta-stat-number {
  display: block; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}

.cta-stat-label {
  display: block; font-size: 11px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 4px;
}

.cta-stat-divider {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}

/* Action buttons */
.cta-buttons {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
}

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 52px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* WhatsApp primary button */
.cta-btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff; border: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3), 0 0 60px rgba(37,211,102,0.08);
}

.cta-btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(37,211,102,0.4), 0 0 80px rgba(37,211,102,0.12);
  color: #fff;
}

.cta-btn-arrow {
  display: inline-block; transition: transform 0.3s ease;
  font-size: 18px; opacity: 0.8;
}

.cta-btn-whatsapp:hover .cta-btn-arrow {
  transform: translateX(4px); opacity: 1;
}

/* Glass outline buttons */
.cta-btn-glass {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}

.cta-btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.cta-btn-glass svg { opacity: 0.6; transition: opacity 0.3s; }
.cta-btn-glass:hover svg { opacity: 1; }

/* Trust seals */
.cta-trust-seals {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}

.cta-seal {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
}

.cta-seal svg { stroke: rgba(255,255,255,0.25); }

/* ========== CONTACT ========== */
.contact-section { padding: 80px 0; background: var(--bg-primary); }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.contact-card {
  text-align: center; padding: 40px 28px;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.contact-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-glow); transform: translateY(-5px); }

.contact-icon-bg {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 16px;
  background: var(--gradient-primary); display: flex; align-items: center;
  justify-content: center; font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,114,255,0.2); transition: all var(--transition);
}
.contact-card:hover .contact-icon-bg { transform: scale(1.08); box-shadow: 0 8px 30px rgba(0,114,255,0.25); }

.contact-card-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.contact-card-detail { font-size: 14px; color: var(--text-muted); }
.contact-card-detail a { color: var(--text-body); }
.contact-card-detail a:hover { color: var(--color-primary); }

/* ========== FAQ ========== */
.faq-section { padding: 100px 0; background: var(--bg-secondary); }
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-md); margin-bottom: 12px;
  overflow: hidden; transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.faq-item:hover { border-color: rgba(0,114,255,0.15); }
.faq-item.active { border-color: var(--color-primary); box-shadow: var(--shadow-glow); }

.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; padding: 20px 28px;
  background: transparent; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--text-heading); transition: color var(--transition); gap: 16px;
  text-align: left;
}
.faq-question:hover { color: var(--color-primary); }
.faq-question span { flex: 1; }

.faq-chevron { transition: transform 0.3s ease; flex-shrink: 0; color: var(--text-muted); }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--color-primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-answer p { padding: 0 28px 24px; font-size: 14.5px; color: var(--text-body); line-height: 1.85; }

/* ========== DISCLAIMER ========== */
.disclaimer-section {
  padding: 48px 0; background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.disclaimer-box {
  max-width: 900px; margin: 0 auto;
  padding: 36px; background: var(--bg-secondary);
  border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title {
  font-size: 20px; font-weight: 800; margin-bottom: 24px;
  text-align: center;
}

.disclaimer-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px; }

.disclaimer-list li {
  font-size: 14px; color: var(--text-body); line-height: 1.65;
  padding-left: 28px; position: relative; list-style: none;
}
.check { position: absolute; left: 0; top: 1px; font-size: 14px; font-weight: 800; color: var(--color-primary); }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--bg-footer); color: rgba(255,255,255,0.4);
  padding: 64px 0 0; border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800;
  font-size: 20px; color: #fff; text-decoration: none; margin-bottom: 18px;
}

.footer-description { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all var(--transition);
}
.social-link:hover {
  background: var(--gradient-primary); border-color: transparent;
  transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,114,255,0.25);
  color: #fff;
}

.footer-col-title {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: rgba(255,255,255,0.8); margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }
.footer-links li a { font-size: 14px; color: rgba(255,255,255,0.35); transition: all var(--transition); }
.footer-links li a:hover { color: var(--color-primary); padding-left: 4px; }

.footer-contact-label { display: block; font-size: 12px; color: rgba(255,255,255,0.25); margin-bottom: 2px; }

.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.25); }

.payment-badges { display: flex; align-items: center; gap: 8px; }
.payment-badge {
  padding: 5px 14px; border-radius: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed; top: 50%; left: 20px; z-index: 999;
  transform: translateY(-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow:
    0 4px 15px rgba(37,211,102,0.4),
    0 0 0 0 rgba(37,211,102,0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: wa-glow-pulse 2.5s ease-in-out infinite;
}

/* Outer ripple ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: wa-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  pointer-events: none;
}

/* Second delayed ripple */
.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-ripple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite 0.6s;
  pointer-events: none;
}

/* Tooltip label */
.whatsapp-float span.wa-label {
  position: absolute;
  left: 72px; top: 50%;
  transform: translateY(-50%) translateX(-10px);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 8px 16px 8px 14px;
  border-radius: 8px;
  font-size: 13px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  letter-spacing: 0.3px;
}
.whatsapp-float span.wa-label::before {
  content: '';
  position: absolute;
  left: -6px; top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #25D366;
}

/* Icon bounce */
.whatsapp-float svg {
  animation: wa-icon-bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Hover state */
.whatsapp-float:hover {
  transform: translateY(-50%) scale(1.15);
  box-shadow:
    0 8px 30px rgba(37,211,102,0.5),
    0 0 20px rgba(37,211,102,0.2);
  color: #fff;
  background: linear-gradient(135deg, #2bea73 0%, #25D366 50%, #128C7E 100%);
}
.whatsapp-float:hover span.wa-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.whatsapp-float:hover svg {
  animation: wa-icon-shake 0.5s ease-in-out;
}
.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  animation: none;
  opacity: 0;
}

/* Animations */
@keyframes wa-glow-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 8px rgba(37,211,102,0.06); }
}

@keyframes wa-ripple {
  0% { width: 100%; height: 100%; opacity: 0.6; }
  100% { width: 180%; height: 180%; opacity: 0; margin: -40% 0 0 -40%; }
}

@keyframes wa-icon-bounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-3px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
  60% { transform: translateY(0); }
}

@keyframes wa-icon-shake {
  0% { transform: rotate(0); }
  20% { transform: rotate(-15deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(5deg); }
  100% { transform: rotate(0); }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ========== INNER PAGE HERO ========== */
.page-hero {
  position: relative; min-height: 420px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 140px 24px 70px;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(2,6,23,0.88) 0%, rgba(10,22,40,0.92) 50%, rgba(15,23,42,0.98) 100%);
}

.page-hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px; margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 24px;
  font-size: 13px; font-weight: 500;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
}

.breadcrumbs a:hover { color: var(--color-primary); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.2); font-size: 10px;
}

.breadcrumb-current {
  color: rgba(255,255,255,0.8); font-weight: 600;
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero-gradient {
  background: linear-gradient(135deg, #00c6ff, #0072ff, #7c3aed);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s ease infinite;
}

.page-hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 560px; margin: 0 auto;
}

/* ========== SERVICE DETAIL ========== */
.service-detail-section {
  padding: 90px 0; background: var(--bg-primary);
}

.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

.service-detail-content .section-overline {
  margin-bottom: 12px; display: inline-block;
}

.service-detail-title {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800; color: var(--text-heading);
  margin-bottom: 24px; letter-spacing: -0.02em;
}

.service-detail-content p {
  font-size: 15px; line-height: 1.8;
  color: var(--text-body); margin-bottom: 18px;
}

.service-detail-content h3 {
  font-size: 20px; font-weight: 700;
  color: var(--text-heading); margin: 32px 0 16px;
}

.service-feature-list {
  list-style: none; padding: 0; margin: 0;
}

.service-feature-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 14.5px; color: var(--text-body);
  border-bottom: 1px solid var(--border-color);
}

.service-feature-list li:last-child { border-bottom: none; }

.service-feature-list li i {
  color: var(--green); font-size: 13px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,212,170,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.service-detail-image {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-detail-image img {
  width: 100%; display: block; border-radius: 20px;
}

/* ========== SERVICE FEATURES GRID ========== */
.service-features-section {
  padding: 90px 0; background: var(--bg-secondary);
}

.service-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}

.service-feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 36px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-feature-card:hover {
  border-color: var(--border-hover); box-shadow: var(--shadow-glow);
  transform: translateY(-5px);
}

.service-feature-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0,114,255,0.2);
  transition: all var(--transition);
}

.service-feature-card:hover .service-feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(0,114,255,0.3);
}

.service-feature-card h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text-heading); margin-bottom: 10px;
}

.service-feature-card p {
  font-size: 13.5px; line-height: 1.7;
  color: var(--text-muted);
}

/* ========== FAQ PAGE ========== */
.faq-page-section {
  padding: 90px 0; background: var(--bg-primary);
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category:last-child { margin-bottom: 0; }

.faq-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.faq-category-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gradient-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,114,255,0.2);
}

.faq-category-title {
  font-size: 22px; font-weight: 700;
  color: var(--text-heading); letter-spacing: -0.02em;
}

.faq-page-section .faq-answer ul {
  list-style: none; padding: 0; margin: 12px 0;
}

.faq-page-section .faq-answer ul li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: 14px; color: var(--text-body);
  line-height: 1.7;
}

.faq-page-section .faq-answer ul li i {
  color: var(--green); font-size: 11px; margin-top: 5px;
  flex-shrink: 0;
}

/* ========== BLOG LISTING ========== */
.blog-listing-section { padding: 90px 0; background: var(--bg-primary); }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--bg-card); border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden; transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.blog-card-image {
  width: 100%; height: 200px; object-fit: cover;
  display: block;
}

.blog-card-body { padding: 24px; }

.blog-card-meta {
  display: flex; align-items: center; gap: 16px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-card-meta span { display: flex; align-items: center; gap: 5px; }

.blog-card-title {
  font-size: 18px; font-weight: 700; color: var(--text-heading);
  margin-bottom: 10px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
  font-size: 14px; color: var(--text-body);
  line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}

.blog-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  text-decoration: none; transition: gap 0.3s ease;
}

.blog-card-link:hover { gap: 10px; }

/* ========== BLOG POST ========== */
.blog-post-section { padding: 90px 0; background: var(--bg-primary); }

.blog-post-container {
  max-width: 820px; margin: 0 auto;
}

.blog-post-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border-color);
}

.blog-post-meta span { display: flex; align-items: center; gap: 5px; }

.blog-post-content h2 {
  font-size: 24px; font-weight: 700; color: var(--text-heading);
  margin: 36px 0 16px; letter-spacing: -0.02em;
}

.blog-post-content h3 {
  font-size: 20px; font-weight: 600; color: var(--text-heading);
  margin: 28px 0 12px;
}

.blog-post-content p {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; margin-bottom: 18px;
}

.blog-post-content ul, .blog-post-content ol {
  padding-left: 24px; margin-bottom: 18px;
}

.blog-post-content li {
  font-size: 15px; color: var(--text-body);
  line-height: 1.8; margin-bottom: 8px;
}

.blog-post-content strong { color: var(--text-heading); }

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px; margin: 24px 0;
  background: rgba(0,114,255,0.04); border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--text-body);
}

.blog-post-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.blog-post-tag {
  padding: 6px 14px; border-radius: 20px; font-size: 12px;
  background: rgba(0,114,255,0.08); color: var(--primary);
  font-weight: 500; text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container { gap: 30px; padding: 0 24px; }
  .hero-content { flex: 0 0 55%; max-width: 55%; }
  .hero-showcase { flex: 0 0 42%; max-width: 42%; min-height: auto; }
  .hero-img-scene { max-width: 380px; }
  .hero-float-badge-1 { right: -5%; }
  .hero-float-badge-2 { left: -3%; }
  .hero-float-badge-3 { left: -5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .steps-timeline-line { display: none; }
  .step-connector { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .stats-container { gap: 30px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-image-wrapper { width: 380px; height: 380px; }
  .welcome-circle { width: 300px; height: 300px; }
  .proof-types-grid { grid-template-columns: 1fr; }
  .promo-panel { min-height: 420px; }
  .poa-grid { grid-template-columns: 200px 1fr; }
  .poa-image-col { display: none; }
  .quick-poa-grid { grid-template-columns: 1fr; gap: 40px; }
  .quick-poa-img-wrap img { height: 300px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .main-nav.active {
    display: block; position: fixed; top: 0; right: 0;
    width: 300px; height: 100vh; background: #fff;
    z-index: 10000; padding: 80px 24px 30px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.1); overflow-y: auto;
    border-left: 1px solid var(--border-color);
  }
  .main-nav.active .nav-links { flex-direction: column; gap: 2px; }
  .main-nav.active .nav-links li { width: 100%; }
  .main-nav.active .nav-links li a { padding: 14px 16px; width: 100%; display: block; color: var(--text-body); }
  .main-nav.active .nav-links li a:hover { color: var(--color-primary); background: rgba(0,114,255,0.05); }
  .main-nav.active .dropdown-menu {
    position: static; display: block; background: var(--bg-secondary);
    box-shadow: none; width: 100%; padding: 6px; border-radius: 8px;
    min-width: auto; transform: none; border: none;
  }
  .hamburger { display: flex; }
  .hamburger.active .hamburger-line { background: var(--text-heading); }

  .page-hero { min-height: 320px; padding: 120px 20px 50px; }
  .page-hero-title { font-size: 32px; }
  .service-features-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-container { flex-direction: column; gap: 40px; padding: 0 24px; }
  .hero-content { flex: 1; max-width: 100%; text-align: center; }
  .hero-showcase { display: none; }
  .hero-float-badge { display: none; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .trust-indicators { justify-content: center; gap: 16px; }
  .scroll-indicator { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-number-wrap { width: 70px; height: 70px; }
  .step-number { width: 60px; height: 60px; font-size: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .disclaimer-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .stats-container { gap: 20px; }
  .stat-number { font-size: 24px; }
  .welcome-right { max-width: 360px; margin: 0 auto; }
  .welcome-image-wrapper { width: 320px; height: 320px; }
  .welcome-circle { width: 260px; height: 260px; }
  .feature-step { font-size: 24px; }
  .proof-types-grid { grid-template-columns: 1fr; }
  .promo-heading { font-size: 22px; }
  .poa-grid { grid-template-columns: 1fr; gap: 24px; }
  .poa-tabs { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .poa-tab { flex: 1; min-width: 120px; }
  .poa-form-row { grid-template-columns: 1fr; }
  .quick-poa-grid { grid-template-columns: 1fr; gap: 30px; }
  .quick-poa-image { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  .trust-indicators { flex-direction: column; gap: 12px; align-items: center; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-btn { width: 100%; justify-content: center; }
  .cta-stats { gap: 20px; }
  .cta-stat-divider { display: none; }
  .cta-trust-seals { flex-direction: column; gap: 12px; }
  .welcome-cta-row { flex-direction: column; }
  .welcome-cta-row .welcome-btn { width: 100%; justify-content: center; }
  .steps-row { grid-template-columns: 1fr; }
  .stats-container { flex-direction: column; gap: 16px; }
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-content h2 { font-size: 20px; }
}
