/* ==========================================
   Elite Formation - Premium Stylesheet
   ========================================== */

/* Import Google Fonts */

/* CSS Custom Design System Variables */
:root {
  --color-primary: #f8fafc;       /* Body font color on dark mode */
  --color-primary-light: #151d30; /* Lighter card background */
  --color-primary-dark: #07090e;  /* Extreme black dark background */
  
  --color-accent-teal: #c9884f;   /* Bronze/copper primary branding (from logo) */
  --color-accent-teal-hover: #b8763e;
  --color-accent-teal-light: rgba(201, 136, 79, 0.15);
  
  --color-accent-emerald: #9ca3af; /* Silver secondary branding (from logo) */
  --color-accent-emerald-hover: #6b7280;
  --color-accent-emerald-light: rgba(156, 163, 175, 0.15);

  --color-accent-blue: #3b5998; 
  
  --color-bg-light: #0b0f17;     /* Core dark page background */
  --color-bg-white: #0f1522;     /* Lighter dark card backgrounds */
  --color-border: #1e293b;       /* Dark slate boundary borders */
  
  --color-text-dark: #f8fafc;    /* White primary text */
  --color-text-muted: #94a3b8;   /* Secondary light grey text */
  --color-text-light: #ffffff;   /* Pure white text */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px -1px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -2px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -4px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 8px 10px -6px rgba(0, 0, 0, 0.6);
  --shadow-glow-teal: 0 0 18px rgba(201, 136, 79, 0.45);
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

#starfield-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Ensure real page content sits above the animated dots */
.top-bar, .header-nav, main, section, footer, .mobile-nav-overlay,
.floating-btn, .checkout-modal-overlay, .service-details-modal-overlay {
  position: relative;
  z-index: 1;
}

/* Let the moving-dots canvas show through every section instead of being
   hidden behind opaque section backgrounds (all near-identical dark tones,
   so switching to translucent versions keeps the same look but reveals stars) */
.hero-section,
.quick-start-section,
.pricing-section,
.reviews-section,
.faq-section,
.contact-section,
footer.main-footer {
  background-color: transparent !important;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  color: var(--color-accent-teal);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.text-gradient-navy {
  color: var(--color-primary);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: #f1f5f9;
  color: #0f0d15;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--color-primary-light);
  color: var(--color-text-light);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid var(--color-border);
  background-color: transparent;
  color: var(--color-text-dark);
}

.btn-outline:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-text-muted);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

/* Navigation Bar */
.header-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: var(--transition-normal);
}

.header-nav.scrolled {
  top: 10px;
  background: rgba(10, 8, 14, 0.65);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.header-nav.scrolled a {
  color: var(--color-text-light);
}

.header-nav.scrolled .logo-text {
  color: var(--color-text-light);
}

.header-nav.scrolled .logo-text span {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav.scrolled .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text-light);
}

.header-nav.scrolled .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.5px;
}

.logo-text {
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.logo-text span {
  color: var(--color-accent-teal);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Menu Items */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  font-weight: 500;
  font-size: 0.86rem;
  color: #ffffff;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent-teal);
  transition: var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.header-nav.scrolled .hamburger span {
  background-color: var(--color-text-light);
}

/* Mobile Sidebar Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--color-primary-dark);
  z-index: 999;
  padding: 100px 32px 32px 32px;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-normal);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-text-light);
  display: block;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

/* Hero Section - Elite Formation starry globe */
.hero-section {
  position: relative;
  padding: 40px 0 30px 0;
  background-color: var(--color-primary-dark);
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.08) 0%, transparent 60%),
    radial-gradient(1px 1px at 30px 40px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 120px 90px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 280px 180px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 450px 70px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 600px 220px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 720px 140px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 850px 300px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 980px 110px, #ffffff, rgba(0,0,0,0));
  overflow: hidden;
  text-align: center;
}

.hero-globe-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 520px;
  margin-top: 0;
}

.hero-globe-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-globe-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-globe-heading {
  color: #cbd5e1;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 620px;
}

.hero-globe-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-globe-cta {
  background-color: #f1f5f9;
  color: #0f0d15;
  font-weight: 700;
  border-radius: var(--radius-full);
  padding: 14px 30px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.btn-globe-cta:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.globe-graphic-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 900px;
  height: 100%;
  max-height: 900px;
  z-index: 1;
  opacity: 0.92;
  pointer-events: auto;
}

.hero-globe-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
}
.hero-globe-3d:active { cursor: grabbing; }
.hero-globe-3d canvas { display:block; margin: 0 auto; }

.globe-atmosphere-halo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%,
    rgba(34,211,238,0.18) 0%,
    rgba(59,130,246,0.10) 30%,
    transparent 65%);
  filter: blur(20px);
  z-index: 0;
}

/* ==========================================
   Rotating Glowing 3D Earth (Hero background)
   ========================================== */
.earth-orbit-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.earth-atmosphere-glow {
  position: absolute;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150, 200, 255, 0.32) 0%, rgba(201, 136, 79, 0.16) 45%, transparent 72%);
  filter: blur(34px);
  animation: earthGlowPulse 6s ease-in-out infinite;
}

.earth-sphere {
  position: relative;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at 35% 30%, #16344d 0%, #0a1e30 55%, #030c15 100%);
  box-shadow:
    0 0 70px 10px rgba(120, 180, 255, 0.3),
    0 0 160px 45px rgba(201, 136, 79, 0.12),
    inset -50px -50px 120px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.earth-sphere-map {
  position: absolute;
  inset: -2%;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg');
  background-repeat: repeat-x;
  background-size: 1120px 572px;
  background-position-y: center;
  filter: grayscale(0.8) brightness(1.25) contrast(1.15);
  animation: earthRotate 22s linear infinite;
}

.earth-sphere-shade {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 68% 72%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.55) 72%, rgba(0, 0, 0, 0.88) 100%);
  z-index: 4;
}

.earth-sphere-highlight {
  position: absolute;
  top: 6%;
  left: 10%;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  z-index: 5;
  pointer-events: none;
}

.earth-ring {
  position: absolute;
  border: 1px solid rgba(201, 136, 79, 0.32);
  border-radius: 50%;
}

.earth-ring-1 {
  width: 730px;
  height: 260px;
  transform: rotate(-10deg);
}

.earth-ring-2 {
  width: 820px;
  height: 300px;
  border-color: rgba(156, 163, 175, 0.2);
  transform: rotate(-10deg);
}

@keyframes earthRotate {
  from { background-position-x: 0; }
  to { background-position-x: -1120px; }
}

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

@keyframes slowGlobePulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.98); }
  50% { opacity: 0.45; transform: translate(-50%, -50%) scale(1.02); }
}

/* Quick Start Search Section */
.quick-start-section {
  background-color: var(--color-bg-light);
  padding: 0 0 60px 0;
  margin-top: -80px;
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.search-container-box {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  max-width: 880px;
  margin: 20px auto 0;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 10;
}

.search-toggle-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: transparent;
  padding: 0;
  gap: 8px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: none;
}

.search-toggle-btn {
  color: #ffffff;
  background-color: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.search-toggle-btn:hover:not(.active) {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 22px rgba(255,255,255,0.35), 0 0 44px rgba(255,255,255,0.15), inset 0 0 0 1px rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* Idle glow on inactive tab so it reads as interactive */
#btnTabUk:not(.active) {
  box-shadow: 0 0 12px rgba(16,185,129,0.22), inset 0 0 0 1px rgba(16,185,129,0.28);
}
#btnTabUs:not(.active) {
  box-shadow: 0 0 12px rgba(34,184,255,0.22), inset 0 0 0 1px rgba(34,184,255,0.28);
}
#btnTabUk:hover:not(.active) {
  box-shadow: 0 0 20px rgba(16,185,129,0.45), 0 0 42px rgba(16,185,129,0.22), inset 0 0 0 1px rgba(16,185,129,0.5);
}
#btnTabUs:hover:not(.active) {
  box-shadow: 0 0 20px rgba(34,184,255,0.5), 0 0 42px rgba(34,184,255,0.25), inset 0 0 0 1px rgba(34,184,255,0.55);
}

/* UK tab active — emerald glow */
#btnTabUk.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.55), 0 0 38px rgba(16,185,129,0.28), 0 0 0 1px rgba(16,185,129,0.6);
}
/* USA tab active — cyan/blue glow */
#btnTabUs.active {
  background: linear-gradient(135deg, #22b8ff, #1d7ee0);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0, 150, 255, 0.6), 0 0 38px rgba(34,184,255,0.3), 0 0 0 1px rgba(34,184,255,0.6);
}

.search-title-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.search-input-group {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 8px;
  background-color: var(--color-primary-dark);
  padding: 6px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-input {
  background: transparent;
  color: #ffffff;
  font-size: 1rem;
  padding: 12px;
  width: 100%;
}

.search-input::placeholder {
  color: #64748b;
}

.search-select {
  background-color: var(--color-primary-light);
  color: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.search-btn {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: #ffffff;
  font-weight: 700;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn:hover {
  filter: brightness(1.1);
  transform: translateY(0);
}

/* Availability search status messages */
.search-status-wrapper {
  margin-top: 16px;
  border-radius: var(--radius-md);
  display: none;
  animation: slideDown var(--transition-normal);
}

.search-status-wrapper.active {
  display: block;
}

.status-box {
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.status-box.available {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.status-box.taken {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.status-box.loading {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #94a3b8;
  align-items: center;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-accent-teal);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.status-box-actions {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

/* Trust Brands List */
.brands-row {
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 40px;
}

.brands-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  margin-bottom: 24px;
}

.brands-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.brand-logo-svg {
  height: 24px;
  fill: #64748b;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.brand-logo-svg:hover {
  opacity: 1;
  fill: #94a3b8;
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background-color: #0b0f19;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: var(--font-heading);
}

.stat-num span {
  color: var(--color-accent-teal);
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Packages and Pricing Section */
.pricing-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--color-accent-teal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Pricing Switch Tabs */
.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.pricing-tabs {
  background-color: var(--color-border);
  padding: 4px;
  border-radius: var(--radius-md);
  display: inline-flex;
}

.pricing-tab-btn {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all 0.3s ease-in-out;
}

.pricing-tab-btn:hover:not(.active) {
  color: #ffffff;
  background-color: rgba(255,255,255,0.06);
  box-shadow: 0 0 16px rgba(255,255,255,0.22), inset 0 0 0 1px rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

/* UK pricing tab — emerald glow */
#btnPricingUk.active {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(16,185,129,0.55), 0 0 38px rgba(16,185,129,0.28), 0 0 0 1px rgba(16,185,129,0.55);
}
/* US pricing tab — cyan/blue glow */
#btnPricingUs.active {
  background: linear-gradient(135deg, #22b8ff, #1d7ee0);
  color: #ffffff;
  box-shadow: 0 0 18px rgba(0,150,255,0.6), 0 0 38px rgba(34,184,255,0.3), 0 0 0 1px rgba(34,184,255,0.55);
}

/* Pricing Cards Grid */
.pricing-content-panel {
  display: none;
}

.pricing-content-panel.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Ensure inactive panel stays hidden even when it has utility grid classes like .uk-plans-grid */
.pricing-content-panel:not(.active) { display: none !important; }

#pricingPanelUs.active {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
}

@media (max-width: 900px) {
  #pricingPanelUs.active { grid-template-columns: 1fr; max-width: 480px; }
}

/* UK LTD panel: 4 plans in a single row (higher specificity than .uk-plans-grid alone) */
#pricingPanelUk.active {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
}
@media (max-width: 1100px) {
  #pricingPanelUk.active {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
}
@media (max-width: 600px) {
  #pricingPanelUk.active { grid-template-columns: repeat(4, minmax(220px, 78%)); gap: 12px; }
  #pricingPanelUs.active { grid-template-columns: repeat(3, minmax(220px, 78%)); max-width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: 10px; gap: 12px; }
}

.pricing-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 136, 79, 0.55);
  box-shadow: 0 0 0 1px rgba(201, 136, 79, 0.25), 0 0 28px rgba(201, 136, 79, 0.35), var(--shadow-lg);
}

.pricing-card.recommended {
  border: 2px solid var(--color-accent-teal);
  box-shadow: var(--shadow-md);
}

.pricing-card.recommended:hover {
  box-shadow: var(--shadow-xl);
}

.card-badge {
  position: absolute;
  top: -14px;
  right: 30px;
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 1px;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  min-height: 42px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
}

.card-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.card-price-currency {
  font-size: 1.75rem;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 6px;
}

.card-price-suffix {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.card-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.card-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-cta {
  width: auto;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  margin-top: auto;
  box-sizing: border-box;
  white-space: normal;
  overflow-wrap: break-word;
  font-size: 0.9rem;
  line-height: 1.25;
  align-self: flex-start;
}

/* Banking Setup Sub-section */
.banking-setup-wrapper {
  margin-top: 80px;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.banking-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto;
}

.banking-title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.banking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.banking-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition-normal);
}

.banking-card:hover {
  border-color: rgba(201, 136, 79, 0.6);
  box-shadow: 0 0 0 1px rgba(201, 136, 79, 0.25), 0 0 24px rgba(201, 136, 79, 0.3);
  transform: translateY(-4px);
}

.bank-logo {
  height: 30px;
  margin: 0 auto 16px auto;
  object-fit: contain;
}

.bank-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.bank-fee {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.bank-fee span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* How It Works Section */
.flow-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.flow-item {
  position: relative;
  text-align: center;
  z-index: 2;
}

.flow-icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--color-bg-light);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--color-primary);
  position: relative;
  transition: var(--transition-normal);
}

.flow-item:hover .flow-icon-circle {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.flow-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.flow-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 0 10px;
}

/* Reviews and Trustpilot Integration Section */
.reviews-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.reviews-header-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.reviews-header-left {
  max-width: 600px;
}

.reviews-summary-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.rev-summary-score {
  font-size: 1.5rem;
  font-weight: 800;
}

.reviews-slider-container {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.reviews-grid-track {
  display: flex;
  gap: 30px;
  transition: transform var(--transition-normal);
}

.review-card {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: var(--transition-normal);
}

.review-card:hover {
  border-color: rgba(201, 136, 79, 0.5);
  box-shadow: 0 0 0 1px rgba(201, 136, 79, 0.2), 0 0 22px rgba(201, 136, 79, 0.28);
  transform: translateY(-4px);
}

.rev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.rev-author {
  font-weight: 700;
  font-size: 1rem;
}

.rev-stars-row {
  display: flex;
  gap: 2px;
}

.rev-text {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

.rev-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
}

.rev-footer svg {
  width: 14px;
  height: 14px;
}

/* Reviews slider actions */
.slider-actions {
  display: flex;
  gap: 12px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.slider-btn:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* FAQ Section Accordions */
.faq-section {
  padding: 100px 0;
  background-color: var(--color-bg-white);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(201, 136, 79, 0.45);
  box-shadow: 0 0 18px rgba(201, 136, 79, 0.22);
}

.faq-item.active {
  border-color: var(--color-accent-teal);
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  background-color: var(--color-bg-white);
  transition: var(--transition-fast);
}

.faq-question-btn:hover {
  background-color: var(--color-bg-light);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--color-accent-teal);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  background-color: var(--color-bg-white);
  transition: max-height var(--transition-normal);
}

.faq-answer-content {
  padding: 0 24px 24px 24px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Callout Banner Banner styling */
.cta-banner-section {
  padding: 80px 0;
  background: #05070f;
  position: relative;
  overflow: hidden;
}

.cta-banner-card {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  color: #fff;
  padding: 60px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 80px -30px rgba(13, 148, 136, 0.45),
    0 10px 40px -10px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.cta-banner-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.05) 50%, rgba(20,184,166,0.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
}

.cta-banner-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 40px 100px -30px rgba(13, 148, 136, 0.65),
    0 15px 50px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Contact Information Block (Optional additions) */
.contact-section {
  padding: 100px 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid var(--color-border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-panel h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-panel p {
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-accent-teal-light);
  color: var(--color-accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-content p, .contact-detail-content a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.contact-detail-content a:hover {
  color: var(--color-accent-teal);
}

.contact-form-card {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-input {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: #f8fafc;
  width: 100%;
  transition: var(--transition-fast);
}

.form-input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.form-input:focus {
  border-color: var(--color-accent-teal);
  background-color: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(34,184,255,0.18);
}

.form-submit-btn {
  width: 100%;
}

/* Success status messages for forms */
.form-status-alert {
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  display: none;
}

.form-status-alert.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}

.form-status-alert.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #dc2626;
}

/* Footer Section */
.main-footer {
  background-color: var(--color-primary-dark);
  color: #94a3b8;
  padding: 0 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 70% 20%, rgba(255,255,255,0.25) 50%, transparent 51%),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.28) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,255,255,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 10% 85%, rgba(255,255,255,0.22) 50%, transparent 51%),
    radial-gradient(1px 1px at 55% 45%, rgba(255,255,255,0.2) 50%, transparent 51%),
    radial-gradient(1200px 500px at 50% -10%, rgba(224,169,74,0.08), transparent 60%),
    linear-gradient(180deg, #05070d 0%, var(--color-primary-dark) 60%);
}

.footer-cta-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 60px;
}
.footer-cta-copy h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}
.footer-cta-copy p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}
.footer-wa-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: #e5e7eb;
  color: #0b0e17 !important;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.footer-wa-btn:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-logo { display:inline-block; margin-bottom: 18px; }
.footer-brand-logo img { width: 72px; height: 72px; object-fit: contain; }
.footer-eyebrow {
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-socials-grid {
  display: grid;
  grid-template-columns: repeat(4, 40px);
  gap: 10px;
}
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #cbd5e1;
  transition: all .2s ease;
}
.footer-social:hover {
  color: #0b0e17;
  background: #e0a94a;
  border-color: #e0a94a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224,169,74,0.35);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-info-text {
  font-size: 0.9rem;
  margin: 20px 0;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item a {
  font-size: 0.9rem;
}

.footer-link-item a:hover {
  color: var(--color-accent-teal);
  padding-left: 4px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-row svg { color: var(--color-accent-teal); }
.footer-ic {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-accent-teal);
}
.footer-contact-row a { color: #cbd5e1; }
.footer-contact-row a:hover { color: var(--color-accent-teal); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom-tag { color: #64748b; margin: 0; }

.footer-legal-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 20px;
  text-align: center;
  line-height: 1.5;
}

/* Modal Popup Checkout Flow */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: modalSlideUp var(--transition-normal);
  position: relative;
}

.modal-header {
  background-color: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  font-size: 1.25rem;
  color: #ffffff;
}

.modal-close-btn {
  color: #94a3b8;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 30px;
}

/* Modal Multi-step trackers */
.step-tracker-bar {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
}

.step-tracker-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
  transform: translateY(-50%);
  z-index: 1;
}

.step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.step-node.active {
  border-color: var(--color-accent-teal);
  background-color: var(--color-accent-teal);
  color: #ffffff;
}

.step-node.completed {
  border-color: var(--color-accent-emerald);
  background-color: var(--color-accent-emerald);
  color: #ffffff;
}

/* Checkout content blocks */
.checkout-step-panel {
  display: none;
}

.checkout-step-panel.active {
  display: block;
}

.checkout-summary-box {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.checkout-sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 500;
}

.checkout-sum-row.total {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
}

.checkout-actions-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.checkout-success-body {
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: var(--color-accent-emerald-light);
  color: var(--color-accent-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
}

.success-icon-wrapper svg {
  width: 36px;
  height: 36px;
}

.checkout-success-body h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.checkout-success-body p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Animations */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

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

/* ==========================================
   Responsive Design Breakpoints
   ========================================== */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  @media (max-width: 1024px) {
  .hero-globe-wrapper {
    min-height: 520px;
  }

  .earth-atmosphere-glow {
    width: 480px;
    height: 480px;
  }

  .earth-sphere {
    width: 400px;
    height: 400px;
  }

  .earth-sphere-map {
    background-size: 800px 400px;
    animation-name: earthRotateTablet;
  }

  .earth-ring-1 {
    width: 520px;
    height: 190px;
  }

  .earth-ring-2 {
    width: 590px;
    height: 220px;
  }

  @keyframes earthRotateTablet {
    from { background-position-x: 0; }
    to { background-position-x: -800px; }
  }
}

@media (max-width: 640px) {
  .hero-globe-wrapper {
    min-height: 420px;
  }

  .earth-atmosphere-glow {
    width: 340px;
    height: 340px;
  }

  .earth-sphere {
    width: 280px;
    height: 280px;
  }

  .earth-sphere-map {
    background-size: 560px 280px;
    animation-name: earthRotateMobile;
  }

  .earth-ring-1, .earth-ring-2 {
    display: none;
  }
}

@keyframes earthRotateMobile {
  from { background-position-x: 0; }
  to { background-position-x: -560px; }
}

.hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .search-container-box {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .pricing-content-panel.active {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .banking-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .review-card {
    flex: 0 0 calc(50% - 15px);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Switch to hamburger menu on tablet/mobile only; keep full desktop nav visible */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .search-input-group {
    grid-template-columns: 1fr;
  }
  
  .search-select, .search-btn {
    width: 100%;
    padding: 14px;
    justify-content: center;
  }
  
  .banking-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  
  .review-card {
    flex: 0 0 100%;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* ==========================================
   Top Bar Styles
   ========================================== */
.top-bar {
  background-color: transparent;
  border-bottom: none;
  height: 38px;
  font-size: 0.8rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar-socials span {
  font-weight: 500;
}

.top-bar-socials a {
  color: #64748b;
  display: flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.top-bar-socials a:hover {
  color: var(--color-accent-teal);
}

.top-bar-actions {
  display: flex;
  align-items: center;
}

.top-bar-login-btn {
  color: #94a3b8;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
}

.top-bar-login-btn:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Adjust original header-nav position for top bar */
.header-nav {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 1000;
}

.header-nav.scrolled {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* ==========================================
   Navbar Dropdowns Styling
   ========================================== */
.nav-menu {
  position: relative;
}

.nav-dropdown-item {
  position: relative;
}

.arrow-down {
  font-size: 0.65rem;
  margin-left: 2px;
  opacity: 0.7;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px 0;
  list-style: none;
  display: none;
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 1002;
}

.nav-dropdown-item:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: var(--color-bg-light);
  color: var(--color-accent-teal);
  padding-left: 24px;
}

.header-nav.scrolled .dropdown-menu {
  background-color: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.08);
}

.header-nav.scrolled .dropdown-menu li a {
  color: #94a3b8;
}

.header-nav.scrolled .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: white;
}

/* ==========================================
   Floating Action Buttons & widgets
   ========================================== */
.floating-widgets-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1999;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
  border: none;
}

.floating-btn:hover {
  transform: scale(1.08) translateY(-2px);
}

.btn-whatsapp-float {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-float:hover {
  background-color: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-ai-bot {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.btn-ai-bot:hover {
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

.pulse-ring {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--color-accent-teal);
  animation: pulseWidget 2s infinite;
  z-index: -1;
}

@keyframes pulseWidget {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================
   Interactive AI Chat Box Styles
   ========================================== */
.ai-chat-box {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  height: 480px;
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 2001;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
}

.ai-chat-box.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.ai-chat-header {
  background-color: var(--color-primary-dark);
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ai-chat-close {
  color: #94a3b8;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.ai-chat-close:hover {
  color: white;
}

.ai-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #f8fafc;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-bubble.bot {
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-border);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.ai-chat-quick-replies {
  padding: 10px 16px;
  background-color: #f8fafc;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.ai-chat-quick-replies button {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-primary-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.ai-chat-quick-replies button:hover {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
  background-color: var(--color-bg-light);
}

.ai-chat-input-area {
  padding: 12px 16px;
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 8px;
}

.ai-chat-input-area input {
  flex: 1;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.85rem;
  outline: none;
}

.ai-chat-input-area input:focus {
  border-color: var(--color-accent-teal);
  background-color: var(--color-bg-white);
}

.ai-chat-input-area button {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-emerald) 100%);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: opacity var(--transition-fast);
}

.ai-chat-input-area button:hover {
  opacity: 0.9;
}


/* ==========================================
   Media/Photo Background Cards (populated from /api/media)
   ========================================== */
.pricing-card.has-media {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pricing-card.has-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,14,0.15) 0%, rgba(7,9,14,0.92) 75%);
  z-index: 0;
}

.pricing-card.has-media > * {
  position: relative;
  z-index: 1;
}

.pricing-card.has-media .card-title,
.pricing-card.has-media .card-desc {
  color: #f8fafc;
}

/* ==========================================================
   Dedicated /pricing page — multi-section colored package grid
   ========================================================== */
.df-pricing-page {
  background-color: #05070d;
  padding: 40px 0 100px;
}

.df-section {
  padding: 56px 0 8px;
}

.df-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 24px;
}

.df-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.df-section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.1rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.df-section-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  text-align: right;
}

@media (max-width: 768px) {
  .df-section-desc { text-align: left; max-width: 100%; }
}

.df-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 8px;
}

.df-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

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

.df-pkg-card {
  position: relative;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  color: #f1f5f9;
  --glow: rgba(255,255,255,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.df-pkg-card:hover {
  transform: translateY(-6px);
  border-color: var(--glow);
  box-shadow:
    0 16px 40px -18px rgba(0,0,0,0.6),
    0 0 0 1px var(--glow),
    0 0 24px 2px var(--glow),
    0 0 48px 6px var(--glow);
}

.df-pkg-card.c-green   { background: linear-gradient(160deg, #0d2b21 0%, #08120f 100%); border-color: rgba(16,185,129,0.35); --glow: rgba(16,185,129,0.55); }
.df-pkg-card.c-blue    { background: linear-gradient(160deg, #0d2436 0%, #081016 100%); border-color: rgba(56,189,248,0.35); --glow: rgba(56,189,248,0.55); }
.df-pkg-card.c-gold    { background: linear-gradient(160deg, #332608 0%, #14100a 100%); border-color: rgba(217,164,65,0.4);  --glow: rgba(217,164,65,0.6); }
.df-pkg-card.c-maroon  { background: linear-gradient(160deg, #35131a 0%, #140a0d 100%); border-color: rgba(220,80,100,0.35); --glow: rgba(220,80,100,0.55); }
.df-pkg-card.c-purple  { background: linear-gradient(160deg, #241335 0%, #100a16 100%); border-color: rgba(167,120,220,0.35); --glow: rgba(167,120,220,0.55); }
.df-pkg-card.c-teal    { background: linear-gradient(160deg, #0c2b2c 0%, #081414 100%); border-color: rgba(45,212,191,0.35); --glow: rgba(45,212,191,0.55); }

/* ===== UK LTD — Choose Jurisdiction step page ===== */
.jurisdiction-hero {
  padding: 64px 0 32px;
}

.jurisdiction-step-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-teal);
  margin-bottom: 14px;
}

.jurisdiction-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  max-width: 720px;
  margin-bottom: 18px;
}

.jurisdiction-heading .muted-part { color: var(--color-text-muted); }

.jurisdiction-intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 560px;
}

.jurisdiction-panel-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 100px;
}

.jurisdiction-card {
  width: 100%;
  max-width: 560px;
  background: linear-gradient(160deg, #0d1e1a 0%, #080e0c 100%);
  border: 1px solid rgba(201,136,79,0.28);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.jurisdiction-package-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent-teal-light);
  border: 1px solid rgba(201,136,79,0.35);
  color: var(--color-accent-teal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.jurisdiction-card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.jurisdiction-select {
  width: 100%;
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  padding: 14px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 18px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  transition: border-color var(--transition-fast);
}

.jurisdiction-select:focus {
  outline: none;
  border-color: var(--color-accent-teal);
}

.jurisdiction-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.jurisdiction-chip {
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,0.03);
  color: var(--color-text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.jurisdiction-chip:hover {
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
}

.jurisdiction-chip.selected {
  background: var(--color-accent-teal-light);
  border-color: var(--color-accent-teal);
  color: var(--color-accent-teal);
  box-shadow: 0 0 14px rgba(201,136,79,0.35);
}

.jurisdiction-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  margin-top: 4px;
  line-height: 1.5;
}

.jurisdiction-continue-btn {
  width: 100%;
  margin-top: 22px;
  text-align: center;
  justify-content: center;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.jurisdiction-continue-btn.enabled {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 620px) {
  .jurisdiction-heading { font-size: 1.9rem; }
  .jurisdiction-card { padding: 26px 20px; }
}

.df-badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #e7ebf0;
  color: #10151c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.df-pkg-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.df-pkg-startlabel {
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(241,245,249,0.55);
  margin-bottom: 4px;
}

.df-pkg-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.df-pkg-subnote {
  font-size: 0.78rem;
  color: rgba(241,245,249,0.55);
  margin-bottom: 16px;
}

.df-pkg-desc {
  font-size: 0.85rem;
  color: rgba(241,245,249,0.7);
  margin-bottom: 16px;
}

.df-pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex-grow: 1;
}

.df-pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(241,245,249,0.9);
}

.df-pkg-features svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.85;
}

.df-pkg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #10151c;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}

.df-pkg-btn:hover { background: #ffffff; filter: brightness(1.08); }

/* Themed CTA buttons — inherit their parent card's accent color */
.df-pkg-card.c-maroon .df-pkg-btn {
  background: linear-gradient(135deg, #7a1d2e 0%, #4a0f1e 100%);
  color: #fff;
  border-color: rgba(220,80,100,0.5);
  box-shadow: 0 6px 18px -6px rgba(220,80,100,0.55);
}
.df-pkg-card.c-maroon .df-pkg-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 8px 24px -6px rgba(220,80,100,0.8), 0 0 0 1px rgba(220,80,100,0.8);
  transform: translateY(-1px);
}

.df-pkg-card.c-purple .df-pkg-btn {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #fff;
  border-color: rgba(6,182,212,0.5);
  box-shadow: 0 6px 18px -6px rgba(6,182,212,0.55);
}
.df-pkg-card.c-purple .df-pkg-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 8px 24px -6px rgba(6,182,212,0.85), 0 0 0 1px rgba(6,182,212,0.85);
  transform: translateY(-1px);
}

.df-pkg-card.c-teal .df-pkg-btn,
.df-pkg-card.c-green .df-pkg-btn {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  border-color: rgba(16,185,129,0.5);
  box-shadow: 0 6px 18px -6px rgba(16,185,129,0.55);
}
.df-pkg-card.c-teal .df-pkg-btn:hover,
.df-pkg-card.c-green .df-pkg-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 8px 24px -6px rgba(16,185,129,0.85), 0 0 0 1px rgba(16,185,129,0.85);
  transform: translateY(-1px);
}

.df-pkg-card.c-blue .df-pkg-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  border-color: rgba(56,189,248,0.5);
  box-shadow: 0 6px 18px -6px rgba(56,189,248,0.55);
}
.df-pkg-card.c-blue .df-pkg-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 8px 24px -6px rgba(56,189,248,0.85), 0 0 0 1px rgba(56,189,248,0.85);
  transform: translateY(-1px);
}

.df-pkg-card.c-gold .df-pkg-btn {
  background: linear-gradient(135deg, #f5b544 0%, #d4a017 100%);
  color: #1a1200;
  border-color: rgba(217,164,65,0.6);
  box-shadow: 0 6px 18px -6px rgba(217,164,65,0.6);
}
.df-pkg-card.c-gold .df-pkg-btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 24px -6px rgba(217,164,65,0.9), 0 0 0 1px rgba(217,164,65,0.9);
  transform: translateY(-1px);
}

/* Slim editable company-name utility bar */
.df-name-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 8px;
}

.df-name-bar label {
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.df-name-bar input,
.df-name-bar select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.df-name-bar input { flex: 1 1 220px; min-width: 160px; }
.df-name-bar select { flex: 0 0 110px; }

.df-name-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex-basis: 100%;
}

/* ============ Auth Buttons in Header ============ */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 18px;
}
.btn-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-family: var(--font-heading, inherit);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.28s cubic-bezier(.4,.14,.3,1);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn-login {
  color: rgba(255,255,255,0.92);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
}
.btn-login:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  transform: translateY(-1px);
}
.btn-register {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #6d5cff 0%, #22b8ff 55%, #4a3fe0 100%);
  box-shadow:
    0 6px 22px -6px rgba(109,92,255,0.55),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  position: relative;
}
.btn-register:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 28px -6px rgba(109,92,255,0.85),
    0 0 22px rgba(34,184,255,0.45),
    0 0 0 1px rgba(255,255,255,0.12) inset;
  filter: brightness(1.08) saturate(1.1);
}
.btn-register:active,
.btn-login:active { transform: translateY(0); }

/* Mobile stacked auth in overlay */
.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-auth .btn-auth { width: 100%; padding: 14px 22px; font-size: 0.95rem; }

/* Hide desktop auth pair when hamburger appears */
@media (max-width: 1024px) {
  .nav-auth { display: none; }
}

/* ==== Rebuilt header: logo outside, nav in floating glass pill ==== */
.header-nav.header-bare{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  max-width:100% !important;
  width:100% !important;
  left:0 !important;
  transform:none !important;
  padding:0 24px;
}
.header-bare .header-inner{
  position:relative;
  display:flex;align-items:center;justify-content:center;
  gap:20px;height:80px;max-width:100%;margin:0 auto;
  padding:0 24px 0 180px;
}
.header-bare .logo-outside{
  background:transparent;padding:0;flex-shrink:0;
  position:absolute;left:24px;top:50%;transform:translateY(-50%);
  z-index:20;
}
.header-bare .logo-text,
.header-bare .logo-text span{
  color:#ffffff !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  -webkit-text-fill-color:#ffffff !important;
  font-family:var(--font-heading);
}
.header-bare .nav-pill{
  display:flex;align-items:center;gap:18px;
  padding:10px 22px;border-radius:999px;
  background:transparent !important;
  border:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  box-shadow:none !important;
  flex-wrap:nowrap;overflow:visible;
  margin:0 auto;
  position:relative;z-index:10;
}
.header-bare .nav-menu{gap:16px;}
.header-bare .nav-link{color:#fff;}

/* 3D glass buttons & tabs with hover glow */
.btn, .btn-auth, .nav-link, .dropdown-menu li a, .mobile-menu-link{
  transition: transform .25s ease, box-shadow .35s ease, background .3s ease, color .25s ease, filter .3s ease;
}
.btn:hover, .btn-auth:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(34,184,255,0.35);
  filter:brightness(1.06);
}
.nav-link{
  padding:8px 14px;border-radius:10px;
}
.nav-link:hover{
  background:rgba(255,255,255,0.06) !important;
  box-shadow:0 0 18px rgba(201, 136, 79, 0.25), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  border:none !important;
  color:var(--color-accent-teal, #22b8ff);
}
.dropdown-menu li a:hover{
  box-shadow:inset 0 0 0 1px rgba(34,184,255,0.35), 0 0 18px rgba(34,184,255,0.35);
  transform:translateY(-1px);
}

@media (max-width:1280px){
  .header-bare .nav-pill{display:none;}
  .hamburger{display:flex !important;}
}

/* Bigger logo, allow header to grow */
.header-bare .header-inner{height:auto;min-height:110px;padding:10px 0;}
.header-bare .logo-outside{padding:0 !important;background:transparent !important;box-shadow:none !important;border:none !important;}
.header-bare .logo-outside .logo-icon{background:transparent !important;box-shadow:none !important;border:none !important;}
.header-bare .logo-outside img{background:transparent !important;}

/* ===== Glassmorphism sticky navbar ===== */
.header-nav.header-bare,
.header-nav.header-bare.scrolled{
  position: sticky;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(7, 9, 14, 0.78) 100%), rgba(7, 9, 14, 0.78);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.top-bar{ position: relative; }
.dropdown-menu li a{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.dropdown-menu .dd-price{ color: var(--color-accent-teal); font-weight:700; font-size:0.85rem; }

/* ============================================================
   MOBILE RESPONSIVENESS — clean overrides (last in cascade)
   ============================================================ */

/* Never let anything cause a horizontal scrollbar */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, canvas, svg { max-width: 100%; height: auto; }

/* Word-wrap long headings/text on small screens */
@media (max-width: 768px) {
  h1, h2, h3, h4, .hero-title, .section-title {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }
  .container { padding-left: 16px; padding-right: 16px; }
}

/* --- Header: shrink logo, tighten spacing, keep hamburger on right --- */
@media (max-width: 1024px) {
  .header-bare .header-inner{
    min-height: 72px;
    padding: 8px 16px 8px 96px !important;
    justify-content: flex-end;
  }
  .header-bare .logo-outside{
    left: 12px !important;
  }
  .header-bare .logo-outside .logo-icon{
    width: 72px !important;
    height: 56px !important;
  }
  .header-bare .logo-outside img{
    width: 72px !important;
    height: 56px !important;
  }
  .hamburger{
    display: flex !important;
    margin-left: auto;
  }
  .nav-auth{ display:none !important; }
}

@media (max-width: 480px) {
  .header-bare .header-inner{
    min-height: 64px;
    padding: 6px 12px 6px 84px !important;
  }
  .header-bare .logo-outside .logo-icon,
  .header-bare .logo-outside img{
    width: 60px !important;
    height: 48px !important;
  }
  .top-bar { display: none; }
}

/* --- Mobile nav overlay polish --- */
.mobile-nav-overlay{
  position: fixed; inset: 0;
  background: rgba(5,7,15,0.98);
  z-index: 999;
  display: none;
  overflow-y: auto;
  padding: 90px 24px 40px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.mobile-nav-overlay.open{ display: block; }
.mobile-menu{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:4px; max-width:480px; margin:0 auto; }
.mobile-menu-link{
  display:block; padding:14px 18px; color:#fff; font-weight:600;
  border-radius:12px; text-decoration:none; font-size:1rem;
  border:1px solid rgba(255,255,255,0.06);
  background:rgba(255,255,255,0.03);
}
.mobile-menu-link:hover{ background:rgba(34,184,255,0.12); border-color:rgba(34,184,255,0.35); }
.mobile-auth{ margin-top:14px; }
.mobile-auth .btn-auth{ display:block; text-align:center; }

/* --- Sections: single-column, fluid typography --- */
@media (max-width: 768px) {
  section { padding-top: 48px !important; padding-bottom: 48px !important; }
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; line-height:1.15 !important; }
  .hero-subtitle { font-size: 1rem !important; }
  .hero-wrapper,
  .contact-grid,
  .footer-top-grid,
  .founder-grid,
  .pricing-content-panel.active,
  .about-grid,
  .two-col,
  .split-grid { grid-template-columns: 1fr !important; gap: 32px !important; text-align: left; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .banking-grid,
  .flow-grid,
  .service-grid,
  .features-grid,
  .sp-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .review-card { flex: 0 0 90% !important; }
  .footer-bottom{ flex-direction: column; gap: 12px; text-align: center; }
  .top-bar-wrapper{ flex-direction: column; gap: 8px; text-align:center; }
  table { display:block; overflow-x:auto; }
  .btn, .btn-primary, .btn-auth { width: 100%; justify-content:center; text-align:center; }
  .search-container-box{ padding: 20px !important; }
  .search-toggle-tabs{ flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 1.8rem !important; }
}

/* Prevent long unbroken strings (emails, urls) from overflowing cards */
.footer-contact-row, .footer-info-text, .card, .sp-card, .pricing-card { overflow-wrap: anywhere; }

/* ============================================================
   HAMBURGER — always clickable on mobile, animated to X
   ============================================================ */
.hamburger{
  border: 0;
  background: transparent;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
  z-index: 1200;
  -webkit-tap-highlight-color: transparent;
}
.hamburger span{
  display:block;
  width: 24px;
  height: 2.5px;
  background:#fff !important;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1024px){
  .hamburger{ display: inline-flex !important; }
}
@media (min-width: 1281px){
  .hamburger{ display: none !important; }
}

/* Ensure overlay sits above header but below hamburger */
.mobile-nav-overlay{ z-index: 1100; }

/* ============================================
   Force header & dropdowns to glassmorphism at all times.
   Overrides any .scrolled state.
   ============================================ */
.header-nav,
.header-nav.scrolled,
.header-nav.header-bare,
.header-nav.header-bare.scrolled {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(7, 9, 14, 0.78) 100%), rgba(7, 9, 14, 0.78) !important;
  backdrop-filter: blur(22px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(170%) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease !important;
}
.header-nav a,
.header-nav.scrolled a,
.header-nav .logo-text,
.header-nav.scrolled .logo-text,
.header-nav .logo-text span,
.header-nav.scrolled .logo-text span {
  color: #ffffff !important;
}
.header-nav .hamburger span,
.header-nav.scrolled .hamburger span {
  background: #ffffff !important;
}
.dropdown-menu,
.header-nav.scrolled .dropdown-menu {
  background: rgba(11, 14, 20, 0.88) !important;
  backdrop-filter: blur(18px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(150%) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45) !important;
}
.dropdown-menu li a,
.header-nav.scrolled .dropdown-menu li a {
  background: transparent !important;
  color: #e5e7eb !important;
}
.dropdown-menu li a:hover,
.header-nav.scrolled .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(201, 136, 79, 0.25) !important;
}

/* ============================================
   FINAL HEADER REWRITE — Flexbox, compact, no overlap
   ============================================ */
.header-nav.header-bare{
  padding: 0 !important;
}
.header-bare .header-inner{
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 24px !important;
  height: 64px !important;
  min-height: 64px !important;
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 28px !important;
  position: relative !important;
}
.header-bare .logo-outside{
  position: static !important;
  transform: none !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 20 !important;
}
.header-bare .logo-outside img{
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  display: block !important;
}
.header-bare .nav-pill{
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  gap: 8px !important;
  flex-shrink: 1 !important;
  min-width: 0 !important;
}
.header-bare .nav-menu{
  gap: 6px !important;
  padding: 0 !important;
  margin: 0 !important;
}
.header-bare .nav-link{
  padding: 6px 12px !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}
.header-bare .nav-auth{
  gap: 8px !important;
  margin-left: 12px !important;
}
.header-bare .btn-auth{
  padding: 7px 14px !important;
  font-size: 13px !important;
}
.header-bare .hamburger{
  position: static !important;
  margin-left: auto !important;
}

@media (max-width: 768px){
  .header-bare .header-inner{
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 16px !important;
  }
  .header-bare .logo-outside img{
    height: 36px !important;
    max-height: 36px !important;
  }
}

/* Floating widgets: entrance + pulse */
.floating-widgets-container .floating-btn { animation: efPopIn .5s cubic-bezier(.34,1.56,.64,1) both; }
.floating-widgets-container .floating-btn:nth-child(2) { animation-delay: .1s; }
.btn-whatsapp-float::after,
.btn-chat-float::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 currentColor; opacity: .55;
  animation: efPulseRing 2.2s ease-out infinite; pointer-events: none;
}
.btn-whatsapp-float { background-color:#25d366; color:#fff; }
.btn-whatsapp-float svg { fill:#fff; color:#fff; }
.btn-whatsapp-float::after { color:#25d366; }
.btn-chat-float {
  background: linear-gradient(135deg,#1e3a8a 0%,#0ea5b7 100%);
  color:#fff; box-shadow: 0 4px 18px rgba(14,165,183,.45);
}
.btn-chat-float:hover { box-shadow: 0 8px 26px rgba(14,165,183,.65); }
.btn-chat-float::after { color:#0ea5b7; }
@keyframes efPopIn { from { opacity:0; transform: translateY(20px) scale(.6);} to {opacity:1; transform:none;} }
@keyframes efPulseRing {
  0% { box-shadow: 0 0 0 0 currentColor; opacity:.5; }
  70% { box-shadow: 0 0 0 18px currentColor; opacity:0; }
  100% { box-shadow: 0 0 0 0 currentColor; opacity:0; }
}

/* AI Chat window */
.ef-chat-window {
  position: fixed; bottom: 100px; right: 24px; width: 360px; max-width: calc(100vw - 32px);
  height: 480px; max-height: calc(100vh - 140px);
  background: #0b1220; color:#e2e8f0; border:1px solid rgba(148,163,184,.18);
  border-radius: 18px; box-shadow: 0 20px 60px rgba(0,0,0,.55);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(20px) scale(.96); opacity: 0; pointer-events: none;
  transition: all .28s cubic-bezier(.34,1.56,.64,1); z-index: 2000;
}
.ef-chat-window.open { transform: none; opacity: 1; pointer-events: auto; }
.ef-chat-header {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px; background: linear-gradient(135deg,#1e3a8a,#0ea5b7); color:#fff;
}
.ef-chat-title { display:flex; align-items:center; gap:10px; }
.ef-chat-title strong { display:block; font-size:14px; }
.ef-chat-title span { display:block; font-size:11px; opacity:.85; }
.ef-chat-avatar {
  width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.18);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-size:12px;
}
.ef-chat-close {
  background:transparent; border:none; color:#fff; font-size:24px; line-height:1;
  cursor:pointer; padding: 4px 8px; border-radius: 6px;
}
.ef-chat-close:hover { background: rgba(255,255,255,.15); }
.ef-chat-body { flex:1; padding: 14px; overflow-y:auto; display:flex; flex-direction:column; gap:10px; background:#0b1220; }
.ef-msg { max-width: 82%; padding: 10px 13px; border-radius: 14px; font-size: 13.5px; line-height: 1.45; }
.ef-msg.bot { background: rgba(148,163,184,.12); color:#e2e8f0; border-top-left-radius: 4px; align-self: flex-start; }
.ef-msg.user { background: linear-gradient(135deg,#1e3a8a,#0ea5b7); color:#fff; border-top-right-radius: 4px; align-self: flex-end; }
.ef-msg.typing { display:inline-flex; gap:4px; align-items:center; }
.ef-msg.typing span { width:6px; height:6px; border-radius:50%; background:#94a3b8; animation: efBlink 1.2s infinite; }
.ef-msg.typing span:nth-child(2){ animation-delay:.2s; }
.ef-msg.typing span:nth-child(3){ animation-delay:.4s; }
@keyframes efBlink { 0%,80%,100%{opacity:.25;} 40%{opacity:1;} }
.ef-chat-input { display:flex; gap:8px; padding: 10px; border-top: 1px solid rgba(148,163,184,.15); background:#0f172a; }
.ef-chat-input input {
  flex:1; background: rgba(255,255,255,.06); border:1px solid rgba(148,163,184,.2);
  color:#fff; padding: 10px 12px; border-radius: 10px; font-size: 13.5px; outline:none;
}
.ef-chat-input input:focus { border-color:#0ea5b7; box-shadow: 0 0 0 3px rgba(14,165,183,.2); }
.ef-chat-input button {
  width:40px; height:40px; border-radius: 10px; border:none; cursor:pointer;
  background: linear-gradient(135deg,#1e3a8a,#0ea5b7); color:#fff;
  display:flex; align-items:center; justify-content:center;
}
.ef-chat-input button:hover { filter: brightness(1.1); }
@media (max-width: 480px) {
  .ef-chat-window { right: 12px; left: 12px; width: auto; bottom: 92px; height: 70vh; }
}

/* ============ UK LTD 4-Plan Pricing Grid ============ */
.uk-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}
/* Force single-row layout on all viewports with horizontal scroll on small screens */
@media (max-width: 1100px) {
  .uk-plans-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .uk-plans-grid > .plan-card { scroll-snap-align: start; }
}
@media (max-width: 600px) {
  .uk-plans-grid { grid-template-columns: repeat(4, minmax(220px, 78%)); gap: 12px; }
}

.plan-card {
  position: relative;
  background:
    linear-gradient(160deg, var(--plan-tint-a, rgba(34,197,94,0.22)) 0%, rgba(10,16,26,0.85) 55%, rgba(6,10,18,0.95) 100%);
  border: 1px solid var(--plan-border, rgba(255,255,255,0.08));
  border-radius: 20px;
  padding: 34px 26px 26px;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  overflow: visible;
  margin-top: 18px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
  backdrop-filter: blur(10px);
}
.plan-card:hover { transform: translateY(-6px); border-color: var(--plan-color, rgba(255,255,255,0.28)); box-shadow: 0 24px 55px rgba(0,0,0,0.55), 0 0 40px -10px var(--plan-glow, rgba(56,189,248,0.4)); }
.plan-accent { display: none; }
.plan-tag {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.plan-onetime {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: #9ca3af;
  margin-bottom: 4px;
}
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.plan-currency { font-size: 2rem; color: #fff; font-weight: 600; }
.plan-price { font-family: var(--font-heading); font-size: 3.4rem; font-weight: 700; color: #fff; line-height: 1; }
.plan-sub { color: #94a3b8; font-size: 0.88rem; margin: 10px 0 18px; }
.plan-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; flex-grow: 1; }
.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.45;
}
.plan-features li::before {
  content: '';
  position: absolute; left: 0; top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.45);
  opacity: 1;
}
.plan-features li::after {
  content: none;
}
.plan-cta {
  width: 100%;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.14);
  transition: filter .2s ease, box-shadow .2s ease, transform .2s ease;
}
.plan-cta:hover { background: rgba(255,255,255,0.2); box-shadow: 0 10px 30px var(--plan-glow, rgba(56,189,248,0.45)); transform: translateY(-2px); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #0b1220; color: #cbd5e1;
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.65rem; letter-spacing: 2px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  white-space: nowrap;
}

/* Per-plan accent colors */
.plan-starter  { --plan-color: #22c55e; --plan-glow: rgba(34,197,94,0.35); --plan-tint-a: rgba(6,78,59,0.85); --plan-border: rgba(16,185,129,0.28); }
.plan-silver   { --plan-color: #3b82f6; --plan-glow: rgba(59,130,246,0.4);  --plan-tint-a: rgba(12,74,110,0.85);  --plan-border: rgba(59,130,246,0.35); margin-top: 10px; }
.plan-gold     { --plan-color: #d4a24a; --plan-glow: rgba(212,162,74,0.35); --plan-tint-a: rgba(87,63,20,0.85); --plan-border: rgba(212,162,74,0.32); }
.plan-platinum { --plan-color: #b91c3c; --plan-glow: rgba(185,28,60,0.4);   --plan-tint-a: rgba(88,15,32,0.85); --plan-border: rgba(185,28,60,0.32); }

/* Override the generic neon rotator so tier tint stays visible */
.plan-card, .plan-card:hover {
  border-color: var(--plan-border, rgba(255,255,255,0.1)) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45) !important;
}
.plan-card:hover {
  box-shadow: 0 26px 60px rgba(0,0,0,0.6), 0 0 40px -10px var(--plan-glow) !important;
}

html { scroll-behavior: smooth; }

/* ============================================
   Mobile Nav Drawer — premium dark card
   ============================================ */
.mobile-nav-overlay{
  position: fixed; inset: 0;
  background: rgba(3,6,12,0.72);
  backdrop-filter: blur(14px);
  z-index: 1200;
  display: none;
  padding: 20px 16px;
  overflow-y: auto;
  animation: efFade .18s ease-out;
}
.mobile-nav-overlay.open{ display: block; }
@keyframes efFade { from { opacity: 0 } to { opacity: 1 } }

.mobile-nav-card{
  max-width: 440px;
  margin: 12px auto;
  background: linear-gradient(180deg, rgba(15,20,32,0.98), rgba(9,12,20,0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(34,184,255,0.06);
  padding: 14px 14px 22px;
  animation: efSlide .22s ease-out;
}
@keyframes efSlide { from { transform: translateY(-10px); opacity: 0 } to { transform: none; opacity: 1 } }

.mobile-nav-head{
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 6px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 10px;
}
.mobile-nav-brand img{ width: 40px; height: 40px; object-fit: contain; display:block; }
.mobile-nav-close{
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.mobile-nav-close:hover{ background: rgba(255,255,255,0.1); transform: rotate(90deg); }

.mobile-menu{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu-link{
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: #e8eefc;
  font-size: 0.98rem; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.mobile-menu-link:hover,
.mobile-menu-link:focus-visible{
  background: rgba(34,184,255,0.10);
  border-color: rgba(34,184,255,0.28);
  color: #fff;
  outline: none;
}
.m-caret{
  display: inline-block;
  transition: transform .2s ease;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.m-sub.open > .m-sub-trigger .m-caret{ transform: rotate(180deg); color: #22b8ff; }
.m-sub.open > .m-sub-trigger{
  background: rgba(34,184,255,0.12);
  border-color: rgba(34,184,255,0.30);
  color: #fff;
}

.m-sub-list{
  list-style: none;
  margin: 4px 4px 6px;
  padding: 6px 6px 6px 14px;
  display: none;
  border-left: 2px solid rgba(34,184,255,0.35);
}
.m-sub.open > .m-sub-list{ display: block; animation: efFade .18s ease-out; }
.m-sub-list li a{
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #b8c4dc;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.m-sub-list li a:hover{
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.mobile-auth{ margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-auth .btn-auth{ display: block; text-align: center; width: 100%; padding: 14px 22px; }

@media (min-width: 981px){
  .mobile-nav-overlay{ display: none !important; }
}

/* ============================================
   Step 1 — Jurisdiction Selector
   ============================================ */
.step-header{ text-align:center; max-width:820px; margin:0 auto 28px; }
.step-eyebrow{
  display:inline-block; font-size:0.72rem; font-weight:800;
  letter-spacing:0.18em; color:#8ea1c2; text-transform:uppercase;
  margin-bottom:12px;
}
.jurisdiction-box{
  max-width:960px; margin:0 auto;
  background:linear-gradient(180deg, rgba(15,20,32,0.9), rgba(9,12,20,0.9));
  border:1px solid rgba(255,255,255,0.08);
  border-radius:20px;
  padding:28px;
  box-shadow:0 20px 60px rgba(0,0,0,0.35);
}
.jurisdiction-label{
  display:block; font-size:0.72rem; font-weight:800;
  letter-spacing:0.16em; color:#22b8ff; text-transform:uppercase;
  margin-bottom:12px;
}
.jurisdiction-select{
  width:100%; padding:14px 18px; border-radius:12px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff; font-size:1rem; font-weight:600;
  appearance:none;
  background-image: linear-gradient(45deg, transparent 50%, #22b8ff 50%),
                    linear-gradient(135deg, #22b8ff 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor:pointer; transition:border-color .18s ease, background-color .18s ease;
}
.jurisdiction-select:focus{ outline:none; border-color:#22b8ff; box-shadow:0 0 0 3px rgba(34,184,255,0.18); }
.jurisdiction-pills{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;
  margin-top:16px;
}
.j-pill{
  padding:12px 14px; border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  color:#cfd8ea; font-weight:600; font-size:0.92rem;
  cursor:pointer; text-align:center;
  transition: all 0.3s ease-in-out;
}
.j-pill:hover:not(.active){
  background:rgba(255,255,255,0.06);
  border-color:rgba(255,255,255,0.25);
  color:#fff;
  box-shadow: 0 0 16px rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.j-pill.active{
  background:linear-gradient(135deg, #22b8ff, #1d7ee0);
  border-color:transparent; color:#fff;
  box-shadow: 0 0 18px rgba(0,150,255,0.55), 0 0 38px rgba(34,184,255,0.3), 0 0 0 1px rgba(34,184,255,0.55);
}
.jurisdiction-context{
  margin-top:18px; padding:14px 16px; border-radius:12px;
  background:rgba(34,184,255,0.06); border:1px solid rgba(34,184,255,0.18);
  color:#c8d5ec; font-size:0.92rem; line-height:1.55;
}
@media (max-width:720px){
  .jurisdiction-pills{ grid-template-columns:repeat(2, 1fr); }
  .jurisdiction-box{ padding:20px; }
}

/* ==========================================
   US State Picker (Quick Start)
   ========================================== */
.us-state-picker { position: relative; }
.us-state-input-wrap {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.us-state-input-wrap:focus-within {
  border-color: #e0a94a;
  box-shadow: 0 0 0 3px rgba(224,169,74,0.18);
}
.us-state-icon { color: #94a3b8; font-size: 0.95rem; }
.us-state-caret { color: #94a3b8; font-size: 0.8rem; }
.us-state-input {
  flex: 1; background: transparent; border: 0; outline: none;
  color: #fff; font-size: 0.95rem; font-family: inherit;
}
.us-state-input::placeholder { color: #64748b; }
.us-state-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: #0b0e17; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; max-height: 280px; overflow-y: auto;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  display: none; z-index: 60;
}
.us-state-dropdown.open { display: block; }
.us-state-dropdown::-webkit-scrollbar { width: 8px; }
.us-state-dropdown::-webkit-scrollbar-thumb {
  background: rgba(224,169,74,0.4); border-radius: 4px;
}
.us-state-row {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center;
  gap: 12px; padding: 10px 14px; cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .15s;
}
.us-state-row:last-child { border-bottom: 0; }
.us-state-row:hover { background: rgba(224,169,74,0.08); }
.us-state-code {
  font-weight: 700; font-size: 0.78rem; color: #e0a94a;
  background: rgba(224,169,74,0.12); border-radius: 6px;
  padding: 3px 6px; text-align: center; letter-spacing: 0.5px;
}
.us-state-name { color: #e2e8f0; font-size: 0.9rem; }
.us-state-price { color: #94a3b8; font-size: 0.82rem; font-weight: 600; }
.us-state-empty { padding: 16px; text-align: center; color: #94a3b8; font-size: 0.88rem; }

.us-popular-wrap { margin-top: 16px; }
.us-popular-label {
  display: block; font-size: 0.7rem; letter-spacing: 1.4px;
  color: #94a3b8; text-transform: uppercase; margin-bottom: 8px;
}
.us-popular-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.us-pop-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #cbd5e1; padding: 7px 14px; border-radius: 999px;
  font-size: 0.82rem; cursor: pointer; font-family: inherit;
  transition: all .2s;
}
.us-pop-pill:hover {
  border-color: #e0a94a; color: #fff;
  background: rgba(224,169,74,0.08);
}
.us-pop-pill.active {
  background: #e0a94a; border-color: #e0a94a;
  color: #0b0e17; font-weight: 600;
}

/* ========================================================
   Global Neon Accent + Hover Glow for cards
   Cycles: amber, teal, blue, indigo, magenta, gold
   ======================================================== */
:root{
  --neon-1: 255,176,46;   /* amber */
  --neon-2: 46,214,165;   /* teal  */
  --neon-3: 79,156,255;   /* blue  */
  --neon-4: 138,116,255;  /* indigo*/
  --neon-5: 232,88,168;   /* magenta */
  --neon-6: 224,169,74;   /* gold  */
}

/* Base cards get a neon variable rotated by position */
.pricing-card, .plan-card{
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease !important;
}
.pricing-card{ --nc: var(--neon-1); }
.plan-card  { --nc: var(--neon-3); }

/* Rotate accent for grid siblings */
.pricing-card:nth-child(6n+1){ --nc: var(--neon-1); }
.pricing-card:nth-child(6n+2){ --nc: var(--neon-2); }
.pricing-card:nth-child(6n+3){ --nc: var(--neon-3); }
.pricing-card:nth-child(6n+4){ --nc: var(--neon-4); }
.pricing-card:nth-child(6n+5){ --nc: var(--neon-5); }
.pricing-card:nth-child(6n+6){ --nc: var(--neon-6); }

.plan-card:nth-child(6n+1){ --nc: var(--neon-2); }
.plan-card:nth-child(6n+2){ --nc: var(--neon-3); }
.plan-card:nth-child(6n+3){ --nc: var(--neon-6); }
.plan-card:nth-child(6n+4){ --nc: var(--neon-5); }
.plan-card:nth-child(6n+5){ --nc: var(--neon-1); }
.plan-card:nth-child(6n+6){ --nc: var(--neon-4); }

/* Idle: subtle tinted border */
.pricing-card, .plan-card{
  border: 1px solid rgba(var(--nc), 0.28) !important;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.04) inset,
              0 10px 28px -22px rgba(var(--nc),0.35);
}

/* Hover: lift + neon glow ring */
.pricing-card:hover, .plan-card:hover{
  transform: translateY(-6px);
  border-color: rgba(var(--nc), 0.75) !important;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.18) inset,
              0 25px 55px -18px rgba(var(--nc),0.55),
              0 0 40px -10px rgba(var(--nc),0.45) !important;
}

/* Give the icon container the same neon accent */
.pricing-card > .logo-icon,
.plan-card .plan-icon{
  background: rgba(var(--nc), 0.14) !important;
  border: 1px solid rgba(var(--nc), 0.4) !important;
  color: rgb(var(--nc)) !important;
  box-shadow: 0 0 22px -8px rgba(var(--nc), 0.55);
  transition: box-shadow .35s ease, background .35s ease;
}
.pricing-card:hover > .logo-icon,
.plan-card:hover .plan-icon{
  background: rgba(var(--nc), 0.22) !important;
  box-shadow: 0 0 30px -6px rgba(var(--nc), 0.85);
}

/* Registry Credentials card — neon teal glow */
.registry-glow{
  --nc: 46,214,165;
  border: 1px solid rgba(var(--nc), 0.35) !important;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.06) inset,
              0 20px 45px -25px rgba(var(--nc),0.45),
              0 0 30px -15px rgba(var(--nc),0.35) !important;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.registry-glow:hover{
  transform: translateY(-5px);
  border-color: rgba(var(--nc),0.8) !important;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.2) inset,
              0 30px 65px -18px rgba(var(--nc),0.6),
              0 0 55px -8px rgba(var(--nc),0.55) !important;
}

/* Quick Start container — same neon border + hover glow (teal→blue depending on active tab) */
.quick-start-section .search-container-box{
  --nc: 46, 214, 165;
  position: relative;
  border: 1px solid rgba(var(--nc), 0.35) !important;
  border-radius: 20px;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.06) inset,
              0 20px 45px -25px rgba(var(--nc),0.45),
              0 0 30px -15px rgba(var(--nc),0.35);
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.quick-start-section .search-container-box:hover{
  transform: translateY(-4px);
  border-color: rgba(var(--nc),0.8) !important;
  box-shadow: 0 0 0 1px rgba(var(--nc),0.2) inset,
              0 30px 65px -18px rgba(var(--nc),0.6),
              0 0 55px -8px rgba(var(--nc),0.55);
}
/* Switch accent color when USA tab is active */
.quick-start-section:has(#btnTabUs.active) .search-container-box{
  --nc: 79, 156, 255;
}

/* Web Development Packages inside services tab panel */
.ef-web-panel .wd-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:22px;align-items:stretch;}
.ef-web-panel .wd-card{position:relative;display:flex;flex-direction:column;padding:24px 22px;border-radius:16px;background:linear-gradient(180deg,rgba(20,24,34,.85),rgba(10,13,20,.9));border:1px solid color-mix(in oklch,var(--wd) 45%,transparent);backdrop-filter:blur(10px);transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;min-height:100%;}
.ef-web-panel .wd-card:hover{transform:translateY(-4px);border-color:var(--wd);box-shadow:0 20px 50px -20px color-mix(in oklch,var(--wd) 60%,transparent),0 0 0 1px color-mix(in oklch,var(--wd) 60%,transparent);}
.ef-web-panel .wd-popular{border-color:var(--wd);box-shadow:0 0 0 1px color-mix(in oklch,var(--wd) 70%,transparent),0 24px 60px -24px color-mix(in oklch,var(--wd) 55%,transparent);}
.ef-web-panel .wd-pop{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--wd);color:#0a0d14;font-size:.68rem;font-weight:800;letter-spacing:1.5px;padding:5px 14px;border-radius:999px;text-transform:uppercase;box-shadow:0 6px 20px -6px color-mix(in oklch,var(--wd) 70%,transparent);}
.ef-web-panel .wd-head{display:flex;justify-content:space-between;align-items:center;gap:10px;margin-bottom:10px;}
.ef-web-panel .wd-head h4{color:#fff;font-family:var(--font-heading,inherit);font-weight:800;font-size:1.35rem;margin:0;}
.ef-web-panel .wd-badge{font-size:.6rem;letter-spacing:1.2px;color:color-mix(in oklch,var(--wd) 90%,#fff);text-transform:uppercase;padding:4px 8px;border:1px solid color-mix(in oklch,var(--wd) 40%,transparent);border-radius:6px;}
.ef-web-panel .wd-price{color:var(--wd);font-size:2.4rem;font-weight:800;line-height:1;margin:6px 0 18px;font-family:var(--font-heading,inherit);}
.ef-web-panel .wd-list{list-style:none;padding:0;margin:0 0 20px;flex:1;}
.ef-web-panel .wd-list li{position:relative;padding:8px 0 8px 22px;color:#cbd5e1;font-size:.88rem;line-height:1.5;border-bottom:1px dashed rgba(255,255,255,.06);}
.ef-web-panel .wd-list li:before{content:"";position:absolute;left:0;top:14px;width:10px;height:10px;border-radius:50%;border:2px solid var(--wd);box-shadow:0 0 8px color-mix(in oklch,var(--wd) 60%,transparent);}
.ef-web-panel .wd-list li:last-child{border-bottom:none;}
.ef-web-panel .wd-cta{display:block;text-align:center;padding:12px 18px;border-radius:999px;background:linear-gradient(135deg,color-mix(in oklch,var(--wd) 90%,#000),color-mix(in oklch,var(--wd) 70%,#000));color:#0a0d14;font-weight:700;font-size:.9rem;text-decoration:none;transition:.25s;box-shadow:0 8px 24px -8px color-mix(in oklch,var(--wd) 60%,transparent);}
.ef-web-panel .wd-cta:hover{filter:brightness(1.1);transform:translateY(-2px);box-shadow:0 12px 32px -8px color-mix(in oklch,var(--wd) 80%,transparent);}
@media(max-width:900px){.ef-web-panel .wd-grid{grid-template-columns:1fr;}}

/* ============================================================
   GLOBAL RESPONSIVE AUDIT LAYER — v2
   Ensures fluid, pixel-perfect scaling across all viewports.
   Mobile ≤640 • Tablet 641-1024 • Laptop 1025-1440 • UW >1440
   ============================================================ */

html, body { max-width: 100%; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, canvas, svg { max-width: 100%; height: auto; }
img { object-fit: cover; }

/* Fluid container */
.container, .ef-container, .site-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

/* Ultra-wide guardrail */
@media (min-width: 1441px) {
  .container, .ef-container, .site-container { max-width: 1360px; }
}

/* Fluid typography */
h1, .h1 { font-size: clamp(1.85rem, 4.5vw, 3.4rem); line-height: 1.15; }
h2, .h2 { font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.2; }
h3, .h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.3; }
p, li { font-size: clamp(0.95rem, 1.1vw, 1.05rem); }

/* Touch targets */
a, button, .btn, [role="button"], input[type="submit"], input[type="button"] {
  min-height: 44px;
}
.btn, button { touch-action: manipulation; }

/* Horizontal scrollers — smooth touch */
.ef-tabs-strip, .scroll-x, [data-scroll-x] {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ef-tabs-strip::-webkit-scrollbar,
.scroll-x::-webkit-scrollbar,
[data-scroll-x]::-webkit-scrollbar { display: none; }

/* Tables → scrollable on mobile */
table { width: 100%; }
@media (max-width: 768px) {
  .table-wrap, .data-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 560px; }
}

/* ---------- MOBILE (≤640px) ---------- */
@media (max-width: 640px) {
  section, .section { padding-top: clamp(32px, 8vw, 48px) !important; padding-bottom: clamp(32px, 8vw, 48px) !important; }
  .hero, .subpage-hero { padding-top: 96px !important; padding-bottom: 48px !important; }

  /* Force single-column grids */
  .grid-2, .grid-3, .grid-4,
  .df-grid, .sp-grid, .pkg-grid, .ef-grid,
  .services-grid, .features-grid, .stats-grid,
  .bank-grid, .why-grid, .wd-grid,
  #pricingPanelUk .pkg-grid, #pricingPanelUs .pkg-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Pricing cards — full width, full-width CTAs */
  .pkg-card, .sp-card, .df-card, .price-card, .wd-card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .pkg-card .btn, .pkg-card a.btn, .wd-cta, .df-pkg-btn { width: 100%; text-align: center; }

  /* Kill negative pulls that cause overflow on mobile */
  .quick-start-section { margin-top: 0 !important; }

  /* Flex rows wrap */
  .row, .flex-row, .hero-row { flex-wrap: wrap !important; }

  /* Prevent oversized headings breaking to one word */
  h1, h2 { word-break: normal; overflow-wrap: break-word; hyphens: auto; }

  /* Floating action bubbles — nudge above thumb reach */
  #ef-floating, .floating-actions { bottom: 12px !important; right: 12px !important; }
}

/* ---------- TABLET (641–1024px) ---------- */
@media (min-width: 641px) and (max-width: 1024px) {
  .grid-3, .grid-4,
  .df-grid, .sp-grid, .pkg-grid,
  .services-grid, .features-grid,
  .bank-grid, .why-grid, .wd-grid,
  #pricingPanelUk .pkg-grid, #pricingPanelUs .pkg-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* ---------- LAPTOP (1025–1440px) ---------- */
@media (min-width: 1025px) and (max-width: 1440px) {
  #pricingPanelUs .pkg-grid { grid-template-columns: repeat(3, 1fr) !important; }
  #pricingPanelUk .pkg-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ---------- Service carousel responsive counts ---------- */
@media (max-width: 640px) {
  .ef-carousel .card, .service-card { flex: 0 0 88% !important; scroll-snap-align: start; }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .ef-carousel .card, .service-card { flex: 0 0 48% !important; scroll-snap-align: start; }
}
@media (min-width: 1025px) {
  .ef-carousel .card, .service-card { flex: 0 0 32% !important; }
}

/* Web-dev 5-tier — mobile stack, tablet 2col, desktop 3+, ultra 5 */
@media (max-width: 640px) { .ef-web-panel .wd-grid { grid-template-columns: 1fr !important; } }
@media (min-width: 641px) and (max-width: 1024px) { .ef-web-panel .wd-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (min-width: 1025px) and (max-width: 1440px) { .ef-web-panel .wd-grid { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1441px) { .ef-web-panel .wd-grid { grid-template-columns: repeat(5, 1fr) !important; } }

/* Hide desktop nav < 992, show hamburger */
@media (max-width: 991px) {
  .desktop-nav, .nav-desktop { display: none !important; }
  .mobile-nav-toggle, .hamburger, #mobileNavToggle { display: inline-flex !important; }
}

/* Reduce heavy blurs on small screens for perf */
@media (max-width: 640px) {
  .glass, .glassmorphism, [class*="backdrop-blur"] { backdrop-filter: blur(10px) !important; }
}

/* ===== Reduced motion & perf polish (phase 5) ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  #globe-container, .globe-wrap { display: none !important; }
}
img { content-visibility: auto; }

/* Global dark dropdown fix — avoid white native selects */
select, .form-input, .search-select, .jurisdiction-select {
  background-color: #0b1220 !important;
  color: #e2e8f0 !important;
  border: 1px solid rgba(148,163,184,.25);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%2394a3b8' d='M6 8 0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px !important;
}
select option, select optgroup {
  background-color: #0b1220 !important;
  color: #e2e8f0 !important;
}
select:focus { outline: none; border-color: #0ea5b7; box-shadow: 0 0 0 3px rgba(14,165,183,.2); }

/* ============================================
   FIX: Keep navbar visible on scroll (sticky)
   ============================================ */
.header-nav,
.header-nav.header-bare,
.header-nav.scrolled,
.header-nav.header-bare.scrolled {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  transform: none !important;
  border-radius: 0 !important;
  z-index: 1000 !important;
}
body { padding-top: 64px; }
@media (max-width: 768px){ body { padding-top: 56px; } }

/* ============================================
   NAVBAR REFERENCE OVERRIDE — dark solid bar
   ============================================ */
.top-bar { display: none !important; }

.header-nav.header-bare,
.header-nav.header-bare.scrolled {
  background: #07090e !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}

.header-bare .header-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  height: 64px !important;
  min-height: 64px !important;
  max-width: 1400px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  position: relative !important;
}

/* Logo sits outside the dark bar on the left */
.header-nav.header-bare .logo-outside {
  position: absolute !important;
  left: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  flex-shrink: 0 !important;
  z-index: 20 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.header-nav.header-bare .logo-outside .logo-icon,
.header-nav.header-bare .logo-outside img {
  width: auto !important;
  height: 44px !important;
  max-height: 44px !important;
  display: block !important;
}

.header-bare .nav-pill {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex: 1 1 auto !important;
  gap: 0 !important;
  margin: 0 0 0 160px !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.header-bare .nav-menu {
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.header-bare .nav-link {
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 8px 14px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: none !important;
  position: relative !important;
}
.header-bare .nav-link:hover {
  color: var(--color-accent-teal, #c9884f) !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}
.header-bare .nav-link::after { display: none !important; }

.header-bare .arrow-down {
  font-size: 10px !important;
  margin-left: 4px !important;
  opacity: 0.8 !important;
}

/* Packages CTA on the right */
.header-bare .nav-auth {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  margin-left: 16px !important;
  flex-shrink: 0 !important;
}
.header-bare .btn-auth {
  background: linear-gradient(135deg, var(--color-accent-teal) 0%, var(--color-accent-teal-hover) 100%) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border: none !important;
  box-shadow: none !important;
}
.header-bare .btn-auth:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}

/* Dropdowns — dark solid */
.header-bare .dropdown-menu {
  background: #0b0f17 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 10px !important;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.header-bare .dropdown-menu li a {
  color: #e2e8f0 !important;
  font-size: 13px !important;
  background: transparent !important;
}
.header-bare .dropdown-menu li a:hover {
  background: rgba(255,255,255,0.05) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

/* Responsive nav-pill hide */
@media (max-width: 1100px) {
  .header-bare .nav-pill { display: none !important; }
  .header-bare .hamburger { display: flex !important; margin-left: auto !important; }
  .header-bare .header-inner { justify-content: flex-end !important; }
  .header-nav.header-bare .logo-outside { left: 16px !important; }
  .header-nav.header-bare .logo-outside img { height: 36px !important; max-height: 36px !important; }
}
@media (max-width: 768px) {
  .header-bare .header-inner { height: 56px !important; min-height: 56px !important; padding: 0 16px !important; }
  body { padding-top: 56px !important; }
}

/* ============================================================
   MOBILE OVERFLOW & RESPONSIVENESS HARD-FIXES (< 768px)
   ============================================================ */
html, body { overflow-x: hidden !important; max-width: 100vw; }
* { min-width: 0; }
img, video, canvas, svg, iframe { max-width: 100%; height: auto; }

@media (max-width: 768px) {
  .container { width: 100% !important; max-width: 100% !important; padding-left: 16px !important; padding-right: 16px !important; box-sizing: border-box; }
  section { overflow-x: hidden; }

  /* Hero */
  .hero-section { padding: 90px 0 40px !important; }
  .hero-globe-wrapper { display: block !important; grid-template-columns: 1fr !important; }
  .hero-globe-content { text-align: center; max-width: 100%; }
  .hero-globe-headline { font-size: 1.75rem !important; line-height: 1.2 !important; word-wrap: break-word; overflow-wrap: anywhere; }
  .hero-globe-heading { font-size: 0.95rem !important; }
  .hero-globe-badge { font-size: 0.65rem !important; white-space: normal !important; }

  /* Hero CTA buttons: stack full-width */
  .hero-globe-actions { display: flex !important; flex-direction: column !important; width: 100%; gap: 10px !important; }
  .hero-globe-actions .btn,
  .hero-globe-actions .btn-globe-cta { width: 100% !important; justify-content: center; text-align: center; }

  /* Globe: shrink or hide the 3D globe on tiny screens */
  .globe-graphic-bg { max-width: 100% !important; margin: 24px auto 0; }
  .hero-globe-3d { width: 100% !important; max-width: 320px; margin: 0 auto; height: 320px !important; }
  .globe-atmosphere-halo { max-width: 100%; }

  /* Cards / sections: force full width, no horizontal escape */
  .plan-card, .search-container-box, .cta-banner-card,
  .pricing-section .container > *, #identity-verification .container > * {
    width: 100% !important; max-width: 100% !important; box-sizing: border-box;
  }

  /* Pricing grid single column */
  .plans-grid, .pricing-grid, .cards-grid, .wd-grid, .ef-tab-grid, .banking-grid {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }

  /* CTA banner buttons stack full width */
  .cta-buttons { flex-direction: column !important; width: 100%; }
  .cta-buttons .btn { width: 100% !important; justify-content: center; }

  /* Tabs / horizontal scrollers stay inside viewport */
  .ef-tabs-nav, .service-tabs-scroller { max-width: 100%; overflow-x: auto; }

  /* Long headings anywhere */
  h1, h2, h3 { word-wrap: break-word; overflow-wrap: anywhere; }
}

@media (max-width: 480px) {
  .hero-globe-headline { font-size: 1.5rem !important; }
  .hero-globe-3d { height: 260px !important; max-width: 260px; }
}

/* ============ CRITICAL MOBILE OVERFLOW FIX ============ */
html, body { overflow-x: hidden !important; max-width: 100% !important; width: 100% !important; }
.hero-section, .hero-section .container, .hero-globe-wrapper, .hero-globe-content {
  max-width: 100% !important; overflow-x: hidden !important;
}
@media (max-width: 768px) {
  .hero-globe-headline {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    text-align: center !important;
    padding: 0 1rem !important;
  }
  .hero-globe-heading {
    font-size: 0.95rem !important;
    padding: 0 1rem !important;
    text-align: center !important;
    max-width: 100% !important;
  }
  .hero-globe-badge {
    max-width: 90vw !important;
    font-size: 0.7rem !important;
    padding: 4px 12px !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.3 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-globe-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 20rem !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
  }
  .hero-globe-actions .btn,
  .hero-globe-actions .btn-globe-cta {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    text-align: center !important;
  }
}
@media (max-width: 400px) {
  .hero-globe-headline { font-size: 1.5rem !important; }
}
