/* ============================================
   BRIDZE — Design System & Styles
   Premium Light Theme / FinTech & RegTech
   ============================================ */

/* ---- Google Font ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors — Light Theme */
  --color-bg-dark: #f0f4f8;
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f7f9fc;
  --color-bg-card: #ffffff;
  --color-surface: rgba(0, 0, 0, 0.02);
  --color-surface-hover: rgba(0, 0, 0, 0.04);
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.15);

  /* Accent Colors */
  --color-blue-400: #3b82f6;
  --color-blue-500: #2563eb;
  --color-blue-600: #1d4ed8;
  --color-blue-700: #1e40af;
  --color-gold-400: #f59e0b;
  --color-gold-500: #d97706;
  --color-gold-600: #b45309;
  --color-gold-700: #92400e;

  /* Text */
  --color-text-primary: #0f172a;
  --color-text-secondary: #475569;
  --color-text-muted: #94a3b8;

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #2563eb, #3b82f6);
  --gradient-gold: linear-gradient(135deg, #d97706, #f59e0b);
  --gradient-blue-gold: linear-gradient(135deg, #2563eb, #d97706);
  --gradient-hero: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadow */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-glow-blue: 0 4px 20px rgba(37, 99, 235, 0.12);
  --shadow-glow-gold: 0 4px 20px rgba(217, 119, 6, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ---- Utility Classes ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-blue-600);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 640px;
  line-height: 1.8;
}

.highlight-blue {
  color: var(--color-blue-400);
}

.highlight-gold {
  color: var(--color-gold-400);
}

/* ---- Animated Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: #1e293b;
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(30, 41, 59, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 58px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-blue-gold);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: #ffffff;
}

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

.nav-cta {
  padding: 10px 26px;
  background: var(--gradient-blue);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Decorative gradient orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-blue-400);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--color-blue-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: var(--gradient-blue-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-blue);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--color-blue-500);
  background: rgba(37, 99, 235, 0.08);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.hero-stat h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.hero-stat h3 span {
  color: var(--color-gold-500);
}

.hero-stat p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
  padding: var(--section-padding);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:nth-child(2)::before {
  background: var(--gradient-gold);
}

.service-card:nth-child(2):hover {
  box-shadow: var(--shadow-card);
}

.service-card:nth-child(3)::before {
  background: var(--gradient-blue-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-icon.blue {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-blue-400);
}

.service-icon.gold {
  background: rgba(212, 160, 23, 0.12);
  color: var(--color-gold-400);
}

.service-icon.mixed {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(212, 160, 23, 0.12));
  color: var(--color-blue-400);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.service-features li::before {
  content: '→';
  color: var(--color-blue-400);
  font-weight: 600;
}

.service-card:nth-child(2) .service-features li::before {
  color: var(--color-gold-400);
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products {
  padding: var(--section-padding);
  position: relative;
  background: var(--color-bg-primary);
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  padding: 36px 28px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  transition: height var(--transition-slow);
  z-index: 0;
}

.product-card:nth-child(1)::after {
  background: linear-gradient(to top, rgba(34, 197, 94, 0.08), transparent);
}

.product-card:nth-child(2)::after {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.08), transparent);
}

.product-card:nth-child(3)::after {
  background: linear-gradient(to top, rgba(96, 165, 250, 0.08), transparent);
}

.product-card:nth-child(4)::after {
  background: linear-gradient(to top, rgba(212, 160, 23, 0.08), transparent);
}

.product-card:nth-child(5)::after {
  background: linear-gradient(to top, rgba(251, 191, 36, 0.08), transparent);
}

.product-card:hover::after {
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border-hover);
}

.product-card>* {
  position: relative;
  z-index: 1;
}

.product-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  transition: var(--transition-base);
}

.product-card:nth-child(1) .product-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05);
}

.product-card:nth-child(2) .product-icon {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-blue-400);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.05);
}

.product-card:nth-child(3) .product-icon {
  background: rgba(96, 165, 250, 0.12);
  color: var(--color-blue-400);
  box-shadow: 0 0 0 8px rgba(96, 165, 250, 0.05);
}

.product-card:nth-child(4) .product-icon {
  background: rgba(212, 160, 23, 0.12);
  color: var(--color-gold-400);
  box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.05);
}

.product-card:nth-child(5) .product-icon {
  background: rgba(251, 191, 36, 0.12);
  color: var(--color-gold-400);
  box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.05);
}

.product-card:hover .product-icon {
  transform: scale(1.1);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.product-card .product-type {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-blue-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-live {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-coming {
  background: rgba(251, 191, 36, 0.12);
  color: var(--color-gold-400);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-blue-600);
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 32px 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
}

.stat-card:hover {
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
}

.stat-card h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-card h3 .counter-suffix {
  font-size: 1.8rem;
  color: var(--color-gold-500);
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ================================================
   PLATFORM / CAPABILITIES SECTION
   ================================================ */
.platform {
  padding: var(--section-padding);
  background: var(--color-bg-primary);
  position: relative;
}

.platform::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.platform-header {
  text-align: center;
  margin-bottom: 64px;
}

.platform-header .section-subtitle {
  margin: 0 auto;
}

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

.platform-card {
  padding: 32px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.platform-card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

.platform-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
}

.platform-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.platform-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================
   INDUSTRIES SECTION
   ================================================ */
.industries {
  padding: var(--section-padding);
  position: relative;
}

.industries-header {
  text-align: center;
  margin-bottom: 64px;
}

.industries-header .section-subtitle {
  margin: 0 auto;
}

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

.industry-card {
  padding: 36px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-base);
}

.industry-card:hover {
  border-color: var(--color-blue-500);
  background: rgba(37, 99, 235, 0.04);
  transform: translateY(-5px);
}

.industry-card .industry-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.industry-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--color-bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-subtitle {
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-sm);
  color: var(--color-blue-600);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-form {
  padding: 40px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-blue-500);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-blue);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  padding: 60px 0 30px;
  background: #1e293b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.4);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.85rem;
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: #64748b;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* ================================================
   PRODUCTS GRID — 5 COLUMNS
   ================================================ */
.products-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* 5th product card colors (green — GST) */
.product-card:nth-child(5)::after {
  background: linear-gradient(to top, rgba(34, 197, 94, 0.08), transparent);
}

.product-card:nth-child(5) .product-icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.05);
}

/* Clickable product card link */
.product-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card-link:hover .product-explore {
  opacity: 1;
  transform: translateY(0);
}

.product-explore {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #22c55e;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition-base);
}

/* Live badge inline dot */
.badge-live {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.live-dot-inline {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ================================================
   BRIDZE GST PAGE — HERO
   ================================================ */
.gst-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.gst-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 60%);
  z-index: 0;
}

.gst-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.gst-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  transition: color var(--transition-fast);
}

.gst-breadcrumb:hover {
  color: var(--color-blue-500);
}

.gst-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.gst-hero h1 .gradient-text {
  background: linear-gradient(135deg, #22c55e, #16a34a, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gst-hero p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 580px;
}

.gst-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.gst-hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.gst-stat-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
  color: #22c55e;
}

/* ================================================
   BRIDZE GST PAGE — PRODUCTS GRID
   ================================================ */
.gst-products {
  padding: var(--section-padding);
  position: relative;
}

.gst-products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.gst-products-header {
  text-align: center;
  margin-bottom: 64px;
}

.gst-products-header .section-subtitle {
  margin: 0 auto;
}

.gst-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* GST Product Card */
.gst-product-card {
  position: relative;
  padding: 40px 36px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.gst-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gst-card-live::before {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.gst-card-coming::before {
  background: var(--gradient-gold);
}

.gst-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-card);
}

.gst-product-card:hover::before {
  opacity: 1;
}

.gst-card-status {
  margin-bottom: 20px;
}

.gst-card-status .badge-live,
.gst-card-status .badge-coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot,
.coming-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.live-dot {
  background: #22c55e;
}

.coming-dot {
  background: var(--color-gold-400);
}

.gst-card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: transform var(--transition-base);
}

.gst-product-card:hover .gst-card-icon {
  transform: scale(1.08);
}

.gst-icon-green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.04);
}

.gst-icon-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-blue-400);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.04);
}

.gst-icon-gold {
  background: rgba(217, 119, 6, 0.1);
  color: var(--color-gold-400);
  box-shadow: 0 0 0 6px rgba(217, 119, 6, 0.04);
}

.gst-icon-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.04);
}

.gst-card-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.gst-product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.gst-product-card > p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.gst-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.gst-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.gst-card-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.gst-card-live .gst-card-features li::before {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.gst-card-coming .gst-card-features li::before {
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-gold-500);
}

/* GST CTA Buttons */
.gst-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-chrome {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.btn-chrome:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.35);
}

.btn-waitlist {
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-400));
  color: white;
}

.btn-waitlist:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217, 119, 6, 0.35);
}

/* ================================================
   GST CTA SECTION
   ================================================ */
.gst-cta-section {
  padding: 0 0 clamp(60px, 10vw, 120px);
}

.gst-cta-card {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}

.gst-cta-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.gst-cta-card p {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ================================================
   LEAD CAPTURE MODAL
   ================================================ */
.lead-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lead-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

.lead-modal-overlay.active .lead-modal {
  transform: translateY(0) scale(1);
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.lead-modal-close:hover {
  background: var(--color-surface-hover);
  color: var(--color-text-primary);
}

.lead-modal-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.lead-modal-form-state h3,
.lead-modal-success-state h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lead-modal-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.lead-form-group {
  margin-bottom: 18px;
}

.lead-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 7px;
}

.lead-form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.lead-form-group input:focus {
  border-color: var(--color-blue-500);
}

.lead-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--gradient-blue);
  border: none;
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.lead-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.lead-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Spinner */
.lead-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.lead-spinner.active {
  display: block;
}

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

/* Success States */
.lead-modal-success-state {
  text-align: center;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.lead-modal-success-state p {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-add-chrome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border: none;
  border-radius: 50px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-add-chrome:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
  color: white;
}

/* ================================================
   PULSE PAGE STYLES
   ================================================ */

.pulse-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 80px;
  overflow: hidden;
  text-align: center;
}

.pulse-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, #eff6ff, #ffffff, #faf5ff);
  z-index: 1;
}

.pulse-hero-bg::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.pulse-hero-bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: 20%;
  width: 50vw;
  height: 50vw;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 50%;
  filter: blur(80px);
  animation: pulse-glow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulse-glow {
  0% { transform: scale(0.8) translate(0, 0); opacity: 0.5; }
  100% { transform: scale(1.2) translate(-20px, 20px); opacity: 0.8; }
}

.pulse-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.pulse-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.pulse-breadcrumb:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #e0e7ff;
  color: #4338ca;
  border: 1px solid #c7d2fe;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pulse-gradient-text {
  background: linear-gradient(to right, #4f46e5, #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pulse-hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.pulse-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(to right, #4f46e5, #9333ea);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pulse-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.5);
}

.pulse-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.pulse-label {
  color: #4f46e5;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pulse-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.pulse-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.pulse-features {
  padding: 100px 0;
  background: #ffffff;
}

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

.pulse-feature-card {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.pulse-feature-card:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: translateY(-4px);
}

.pulse-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.icon-indigo { background: #e0e7ff; color: #4f46e5; border-color: #c7d2fe; }
.icon-violet { background: #ede9fe; color: #7c3aed; border-color: #ddd6fe; }
.icon-emerald { background: #d1fae5; color: #059669; border-color: #a7f3d0; }
.icon-orange { background: #ffedd5; color: #ea580c; border-color: #fed7aa; }
.icon-purple { background: #f3e8ff; color: #9333ea; border-color: #e9d5ff; }
.icon-rose { background: #ffe4e6; color: #e11d48; border-color: #fecdd3; }
.icon-teal { background: #ccfbf1; color: #0d9488; border-color: #99f6e4; }
.icon-blue { background: #dbeafe; color: #2563eb; border-color: #bfdbfe; }
.icon-slate { background: #f1f5f9; color: #475569; border-color: #e2e8f0; }

.pulse-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.pulse-feature-card p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
}

.pulse-audience {
  padding: 100px 0;
  background: linear-gradient(to bottom right, #f8fafc, #eff6ff);
  border-top: 1px solid #f1f5f9;
}

.pulse-audience-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.pulse-audience-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pulse-audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pulse-audience-icon {
  width: 48px;
  height: 48px;
  background: #e0e7ff;
  color: #4f46e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pulse-audience-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.pulse-audience-card p {
  font-size: 0.75rem;
  color: #9ca3af;
}

.pulse-reasons {
  padding: 100px 0;
  background: #ffffff;
}

.pulse-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1024px;
  margin: 0 auto;
}

.pulse-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
}

.pulse-reason-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pulse-reason-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
  line-height: 1.5;
}

.pulse-cta-section {
  padding: 80px 0;
  background: linear-gradient(to right, #4f46e5, #9333ea);
}

.pulse-cta-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.pulse-cta-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.pulse-cta-card p {
  font-size: 1.1rem;
  color: #e0e7ff;
  margin-bottom: 32px;
}

.pulse-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #ffffff;
  color: #4f46e5;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.pulse-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
  background: #f8fafc;
}

/* ================================================
   RESPONSIVE — Tablet
   ================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .platform-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    gap: 32px;
  }

  .gst-products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pulse-features-grid {
    grid-template-columns: 1fr 1fr;
  }

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

/* ================================================
   RESPONSIVE — Mobile
   ================================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    border-left: 1px solid var(--color-border);
  }

  .nav-links.open {
    right: 0;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .gst-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .gst-hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .gst-hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .gst-products-grid {
    grid-template-columns: 1fr;
  }

  .products-grid-5 {
    grid-template-columns: 1fr;
  }

  .lead-modal {
    padding: 32px 24px;
  }

  .pulse-features-grid {
    grid-template-columns: 1fr;
  }

  .pulse-audience-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pulse-reasons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}