@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Color System - Premium SaaS Black, White, Electric Blue */
  --primary-blue: #0052ff;
  --primary-blue-rgb: 0, 82, 255;
  --primary-blue-dark: #003db3;
  --primary-blue-light: #3375ff;
  
  --deep-black: #000000;
  --dark-gray: #050507;
  --card-bg: #0b0c10;
  --card-bg-hover: #12141a;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 82, 255, 0.15);
  --border-hover: rgba(0, 82, 255, 0.35);
  
  --pure-white: #ffffff;
  --text-muted: #94a3b8;
  --text-light: #f8fafc;
  --text-dark: #0f172a;
  
  --whatsapp-green: #25d366;
  --whatsapp-green-hover: #20ba59;
  
  /* Fonts */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Shadow & Glow - Modern Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  
  --blue-glow: 0 0 30px rgba(0, 82, 255, 0.15);
  --blue-glow-strong: 0 0 40px rgba(0, 82, 255, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

  /* Apple-level Layout Spacing */
  --container-max-width: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--deep-black);
  color: var(--text-light);
  font-family: var(--font-sans);
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--deep-black);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--pure-white);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  letter-spacing: -0.03em;
}

/* modern minimalist design indicator */
h2.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--primary-blue);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
}

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

ul {
  list-style: none;
}

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

/* Buttons - Premium SaaS Styling */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  gap: 0.6rem;
  letter-spacing: -0.01em;
}

.btn-primary {
  background-color: var(--pure-white);
  color: var(--deep-black);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--pure-white);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-blue);
  color: var(--pure-white);
  transform: translateY(-2px);
  box-shadow: var(--blue-glow);
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--pure-white);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-normal);
}

header.scrolled .nav-container {
  padding: 1.1rem 2rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--pure-white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.04em;
}

.logo span {
  color: var(--primary-blue);
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--pure-white);
}

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

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--pure-white);
  margin: 5px 0;
  transition: var(--transition-normal);
}

/* Sections Global - Apple Level Padding */
section {
  padding: 9rem 2rem;
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

/* Animated Mesh Gradient Backdrops */
.bg-gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 82, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 45%);
  z-index: -1;
  pointer-events: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(0, 82, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  color: var(--pure-white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--primary-blue);
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--pure-white) 40%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2.5rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
}

.badge-item svg {
  color: var(--primary-blue);
  flex-shrink: 0;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Framer-style Browser Mockup Frame */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  background: linear-gradient(145deg, rgba(15, 16, 20, 0.9), rgba(5, 5, 7, 0.95));
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg), var(--blue-glow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition-slow);
}

.hero-mockup:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--blue-glow-strong);
}

.hero-mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
}

.mockup-dots span:nth-child(1) { background-color: rgba(255, 95, 86, 0.4); }
.mockup-dots span:nth-child(2) { background-color: rgba(255, 189, 46, 0.4); }
.mockup-dots span:nth-child(3) { background-color: rgba(39, 201, 63, 0.4); }

.mockup-url {
  font-size: 0.725rem;
  color: var(--text-muted);
  background-color: rgba(255, 255, 255, 0.02);
  padding: 0.3rem 1.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hero-mockup-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 0;
  text-align: center;
}

.mockup-icon {
  font-size: 3.25rem;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.05); }
}

.mockup-logo-text {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pure-white) !important;
  letter-spacing: -0.04em;
}

.mockup-logo-text span {
  color: var(--primary-blue) !important;
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.mockup-stat-card {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  padding: 0.85rem;
  border-radius: 8px;
}

.mockup-stat-num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.25rem;
}

.mockup-stat-label {
  font-size: 0.675rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-section {
  background-color: var(--dark-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.portfolio-header {
  max-width: 750px;
  margin: 0 auto 5rem;
  text-align: center;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.65rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--pure-white);
  color: var(--deep-black);
  border-color: var(--pure-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.75rem;
}

.portfolio-card {
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--blue-glow);
}

.portfolio-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #050507;
  overflow: hidden;
}

.portfolio-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-img-container img {
  transform: scale(1.04);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.tag-label {
  font-size: 0.725rem;
  font-weight: 700;
  background-color: rgba(0, 82, 255, 0.1);
  color: var(--primary-blue-light);
  padding: 0.25rem 0.85rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tag-style {
  font-size: 0.725rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.85rem;
  border-radius: 4px;
}

.portfolio-title {
  font-size: 1.45rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.portfolio-desc {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  color: var(--text-muted);
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--pure-white);
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.portfolio-link:hover {
  color: var(--primary-blue-light);
  border-color: var(--primary-blue-light);
}

.portfolio-link svg {
  transition: var(--transition-fast);
}

.portfolio-link:hover svg {
  transform: translateX(4px);
}

.portfolio-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px dashed rgba(0, 82, 255, 0.25);
  border-radius: 12px;
  padding: 3.5rem 2.5rem;
}

.portfolio-cta-card h3 {
  font-family: var(--font-display);
  color: var(--pure-white);
  margin-bottom: 1rem;
}

/* Industries We Serve */
.industries-section {
  background-image: 
    radial-gradient(circle at 10% 80%, rgba(0, 82, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
}

.industries-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.25rem;
}

.industry-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.25rem;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--blue-glow);
}

.industry-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(0, 82, 255, 0.04);
  border: 1px solid rgba(0, 82, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--primary-blue-light);
  transition: var(--transition-normal);
}

.industry-card:hover .industry-icon-wrapper {
  background-color: var(--primary-blue);
  color: var(--pure-white);
  box-shadow: var(--blue-glow);
}

.industry-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.industry-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Why PulseBitWeb */
.why-us-section {
  background-color: var(--dark-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-us-content h2 {
  text-align: left;
}

.why-us-content h2::after {
  margin: 1.25rem 0 0;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.why-us-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
}

.why-us-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 82, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 82, 255, 0.05);
}

.why-us-text h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-us-text p {
  margin-bottom: 0;
}

.why-us-stat-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
}

.why-us-stat-card {
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  padding: 3.5rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.why-us-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.why-us-stat-val {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.why-us-stat-lbl {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
}

/* Before vs After Slider Component */
.before-after-section {
  background-color: var(--deep-black);
}

.before-after-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.ba-slider-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg), var(--blue-glow);
}

.ba-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-before {
  z-index: 1;
}

.ba-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}

.ba-slide img {
  width: 960px;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

.ba-label {
  position: absolute;
  bottom: 1.75rem;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
}

.ba-before .ba-label {
  right: 1.75rem;
  background-color: rgba(239, 68, 68, 0.9);
  color: var(--pure-white);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.ba-after .ba-label {
  left: 1.75rem;
  background-color: var(--primary-blue);
  color: var(--pure-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--pure-white);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

.ba-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background-color: var(--pure-white);
  border-radius: 50%;
  color: var(--deep-black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), 0 0 12px rgba(255, 255, 255, 0.35);
}

.ba-handle-button svg {
  width: 18px;
  height: 18px;
}

/* Before / After comparison matrix */
.ba-table-container {
  max-width: 860px;
  margin: 4.5rem auto 0;
}

.ba-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.ba-table th,
.ba-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.975rem;
}

.ba-table th {
  background-color: rgba(255, 255, 255, 0.01);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pure-white);
  letter-spacing: -0.01em;
}

.ba-table td:first-child {
  color: #ff6e6b;
  border-right: 1px solid var(--border-color);
}

.ba-table td:last-child {
  color: #5eff8e;
  font-weight: 500;
}

/* Process Section */
.process-section {
  background-color: var(--dark-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.process-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  position: relative;
}

.process-timeline::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.process-step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.25rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--pure-white);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.process-step:hover .process-step-num {
  border-color: var(--primary-blue);
  background-color: var(--primary-blue);
  color: var(--pure-white);
  box-shadow: var(--blue-glow-strong);
  transform: scale(1.03);
}

.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 0.95rem;
  max-width: 300px;
  margin: 0 auto;
}

/* Pricing Grid */
.pricing-section {
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(0, 82, 255, 0.06) 0%, transparent 50%);
}

.pricing-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.pricing-card.popular {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg), var(--blue-glow);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background-color: var(--primary-blue);
  color: var(--pure-white);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 6px;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg), var(--blue-glow);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
}

.pricing-cost {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.pricing-amt {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--pure-white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 3.5rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-feature-item svg {
  color: var(--primary-blue-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
}

/* Testimonials / Credibility Section */
.testimonials-section {
  background-color: var(--dark-gray);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.testimonials-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.testimonials-slider-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4.5rem 3.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  color: rgba(255, 255, 255, 0.02);
  width: 72px;
  height: 72px;
  pointer-events: none;
}

.testimonial-content {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 2;
  letter-spacing: -0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.85rem;
  color: var(--primary-blue-light);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-btn {
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--pure-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.testimonial-btn:hover {
  background-color: var(--pure-white);
  color: var(--deep-black);
  border-color: var(--pure-white);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--primary-blue);
  width: 24px;
  border-radius: 10px;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--deep-black);
}

.faq-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  border-color: var(--primary-blue);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--pure-white);
  letter-spacing: -0.01em;
}

.faq-question-btn svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.faq-item.active .faq-question-btn svg {
  transform: rotate(180deg);
  color: var(--primary-blue-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 0 2.25rem 1.75rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
}

/* Call To Action / Footer CTA */
.cta-section {
  padding: 11rem 2rem;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.12) 0%, transparent 60%);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  background: linear-gradient(135deg, rgba(10, 11, 16, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: 6rem 4.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg), var(--blue-glow);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.cta-box h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.cta-box h2 span {
  background: linear-gradient(135deg, var(--pure-white) 40%, var(--primary-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-box p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* Footer Section */
footer {
  background-color: var(--deep-black);
  border-top: 1px solid var(--border-color);
  padding: 6rem 2rem 2.5rem;
}

.footer-grid {
  max-width: var(--container-max-width);
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 4.5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pure-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.footer-brand h3 span {
  color: var(--primary-blue);
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 290px;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--pure-white);
  color: var(--deep-black);
  border-color: var(--pure-white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.75rem;
  color: var(--pure-white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.925rem;
  color: var(--text-muted);
}

.footer-link:hover {
  color: var(--pure-white);
}

.footer-bottom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border-color);
  padding-top: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

/* Contact Us Grid & Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.contact-info-card {
  display: flex;
  gap: 1.5rem;
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background-color: rgba(0, 82, 255, 0.04);
  border: 1px solid rgba(0, 82, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue-light);
  flex-shrink: 0;
}

.contact-info-text h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.contact-info-text p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.contact-form-panel {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 4.5rem 3.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2.25rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text-light);
}

.form-input {
  width: 100%;
  background-color: var(--deep-black);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 0.95rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--pure-white);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 12px rgba(0, 82, 255, 0.2);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.contact-form-panel .btn {
  width: 100%;
  margin-top: 1rem;
}

/* Page Intro Header (For inner pages) */
.page-intro {
  padding: 12rem 2rem 6rem;
  text-align: center;
  background-image: 
    radial-gradient(circle at 50% 10%, rgba(0, 82, 255, 0.08) 0%, transparent 60%);
}

.page-intro h1 {
  margin-bottom: 1.25rem;
}

.page-intro p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Services Page Detailed Table */
.services-details-section {
  background-color: var(--deep-black);
}

.features-table-container {
  overflow-x: auto;
  margin-top: 5rem;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

.features-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--card-bg);
  min-width: 750px;
}

.features-table th,
.features-table td {
  padding: 1.5rem 2.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.features-table th {
  background-color: rgba(255, 255, 255, 0.01);
  color: var(--pure-white);
  font-weight: 700;
  font-family: var(--font-display);
}

.features-table tr:last-child td {
  border-bottom: none;
}

.features-table td svg {
  color: var(--primary-blue-light);
}

.features-table td.feature-name {
  color: var(--text-light);
  font-weight: 500;
  width: 35%;
}

.features-table td.check-cell {
  text-align: center;
  width: 20%;
}

.features-table th.check-cell {
  text-align: center;
}

/* About Stats Details */
.about-history {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: center;
}

.about-history h2 {
  text-align: left;
}

.about-history h2::after {
  margin: 1.25rem 0 0;
}

.about-image {
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 1.25rem;
  background-color: var(--card-bg);
  box-shadow: var(--shadow-lg), var(--blue-glow);
}

/* Legal Pages Styling */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0 8rem;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.legal-content li {
  margin-bottom: 0.5rem;
  font-size: 1.025rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-badges {
    justify-items: center;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .why-us-content h2 {
    text-align: center;
  }
  
  .why-us-content h2::after {
    margin: 1.25rem auto 0;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }
  
  .process-timeline::after {
    display: none;
  }
  
  .process-step p {
    max-width: 480px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-history {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background-color: var(--dark-gray);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 9rem 2.5rem 2.5rem;
    gap: 2.25rem;
    align-items: flex-start;
    transition: var(--transition-slow);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger {
    display: block;
    z-index: 1001;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .testimonial-card {
    padding: 3.5rem 2rem;
  }
  
  .testimonial-quote-icon {
    top: 1.5rem;
    left: 1.5rem;
    width: 48px;
    height: 48px;
  }
  
  .cta-box {
    padding: 5rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.75rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .ba-label {
    font-size: 0.725rem;
    padding: 0.4rem 1rem;
    bottom: 1rem;
  }
  
  .ba-before .ba-label {
    right: 1rem;
  }
  
  .ba-after .ba-label {
    left: 1rem;
  }
  
  .faq-question-btn {
    padding: 1.5rem 1.5rem;
    font-size: 1rem;
  }
  
  .faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
  }
}
