/* ==========================================================================
   ROAMTECH SOLUTIONS — Corporate Modern Theme Stylesheet
   ========================================================================== */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand Colors */
  --rt-primary: #0052cc;
  --rt-primary-dark: #003d99;
  --rt-primary-light: #e6f0ff;
  --rt-secondary: #00b67a;
  --rt-secondary-dark: #009966;
  --rt-accent: #ff6b35;
  --rt-accent-light: #fff3ed;

  /* Neutrals */
  --rt-dark: #0a1628;
  --rt-gray-900: #1a2332;
  --rt-gray-800: #2d3748;
  --rt-gray-700: #4a5568;
  --rt-gray-600: #6b7280;
  --rt-gray-500: #9ca3af;
  --rt-gray-400: #cbd5e0;
  --rt-gray-300: #e2e8f0;
  --rt-gray-200: #edf2f7;
  --rt-gray-100: #f7fafc;
  --rt-white: #ffffff;

  /* Gradients */
  --rt-gradient-primary: linear-gradient(135deg, #0052cc 0%, #003d99 100%);
  --rt-gradient-hero: linear-gradient(
    135deg,
    #0a1628 0%,
    #0052cc 50%,
    #003d99 100%
  );
  --rt-gradient-secondary: linear-gradient(135deg, #00b67a 0%, #009966 100%);
  --rt-gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2332 100%);
  --rt-gradient-mesh:
    radial-gradient(
      ellipse at 30% 0%,
      rgba(0, 82, 204, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 100%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    );

  /* Typography */
  --rt-font-heading:
    'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --rt-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing Scale */
  --rt-space-xs: 0.25rem;
  --rt-space-sm: 0.5rem;
  --rt-space-md: 1rem;
  --rt-space-lg: 1.5rem;
  --rt-space-xl: 2rem;
  --rt-space-2xl: 3rem;
  --rt-space-3xl: 4rem;
  --rt-space-4xl: 6rem;
  --rt-space-5xl: 8rem;

  /* Borders & Radius */
  --rt-radius-sm: 6px;
  --rt-radius-md: 10px;
  --rt-radius-lg: 16px;
  --rt-radius-xl: 24px;
  --rt-radius-full: 9999px;

  /* Shadows */
  --rt-shadow-sm:
    0 1px 3px rgba(10, 22, 40, 0.06), 0 1px 2px rgba(10, 22, 40, 0.04);
  --rt-shadow-md: 0 4px 14px rgba(10, 22, 40, 0.08);
  --rt-shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.1);
  --rt-shadow-xl: 0 20px 60px rgba(10, 22, 40, 0.15);
  --rt-shadow-card: 0 2px 20px rgba(10, 22, 40, 0.06);
  --rt-shadow-card-hover: 0 8px 40px rgba(0, 82, 204, 0.12);

  /* Transitions */
  --rt-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --rt-transition-fast: all 0.15s ease;
  --rt-transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --rt-container: 1280px;
  --rt-container-wide: 1440px;
  --rt-header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--rt-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--rt-gray-700);
  background-color: var(--rt-white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--rt-primary-dark);
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rt-font-heading);
  font-weight: 700;
  color: var(--rt-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
h5 {
  font-size: 1.125rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--rt-gray-600);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rt-primary);
  margin-bottom: var(--rt-space-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rt-primary);
  display: inline-block;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--rt-gray-600);
  max-width: 640px;
  line-height: 1.7;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--rt-container);
  margin: 0 auto;
  padding: 0 var(--rt-space-xl);
}

.container-wide {
  max-width: var(--rt-container-wide);
  margin: 0 auto;
  padding: 0 var(--rt-space-xl);
}

.section {
  padding: var(--rt-space-5xl) 0;
}

.section-sm {
  padding: var(--rt-space-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--rt-space-4xl);
}

.section-header .eyebrow {
  display: flex;
  justify-content: center;
}

.section-header h2 {
  position: relative;
  display: block;
}

.section-header .section-subtitle {
  margin: var(--rt-space-md) auto 0;
}

.grid {
  display: grid;
  gap: var(--rt-space-2xl);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--rt-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--rt-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--rt-transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--rt-gradient-primary);
  color: var(--rt-white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 82, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 82, 204, 0.4);
  color: var(--rt-white);
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  color: var(--rt-primary);
  border-color: var(--rt-primary);
}

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

.btn-white {
  background: var(--rt-white);
  color: var(--rt-primary);
  border-color: var(--rt-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.btn-white:hover {
  background: var(--rt-gray-100);
  color: var(--rt-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--rt-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: var(--rt-white);
  color: var(--rt-primary);
}

.btn-green {
  background: var(--rt-gradient-secondary);
  color: var(--rt-white);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0, 182, 122, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 182, 122, 0.4);
  color: var(--rt-white);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1rem;
}

.btn-icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--rt-radius-full);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--rt-transition);
  background: transparent;
  height: var(--rt-header-height);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

.site-header.scrolled .nav-link {
  color: var(--rt-gray-800);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--rt-header-height);
  max-width: var(--rt-container-wide);
  margin: 0 auto;
  padding: 0 var(--rt-space-xl);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.logo-dark {
  display: none;
}

.site-logo .logo-text {
  font-family: var(--rt-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rt-white);
  letter-spacing: -0.02em;
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: flex-end;
}

.primary-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--rt-transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--rt-white);
}

.site-header.scrolled .nav-link:hover {
  color: var(--rt-primary);
}

.dropdown-arrow {
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.nav-item:hover .dropdown-arrow,
.nav-item.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: var(--rt-space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
  border: 1px solid var(--rt-gray-200);
  z-index: 1000;
}

/* Wide dropdown for Products */
.mega-dropdown.mega-products {
  min-width: 560px;
}

/* Wide dropdown for Industry */
.mega-dropdown.mega-industry {
  min-width: 320px;
}

/* Prevent dropdown from overflowing viewport edges */
.nav-item:last-child .mega-dropdown,
.nav-item:nth-last-child(2) .mega-dropdown {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-item:last-child:hover .mega-dropdown,
.nav-item:nth-last-child(2):hover .mega-dropdown {
  transform: translateY(0);
}

/* Mega Grid Layout */
.mega-grid {
  display: grid;
  gap: var(--rt-space-xl);
}

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

.mega-col {
  min-width: 0;
}

.mega-heading {
  font-family: var(--rt-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--rt-dark);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rt-gray-200);
}

/* Mega List */
.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li a {
  display: block;
  padding: 0.5rem 0.75rem;
  margin: 0 -0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rt-gray-700);
  border-radius: var(--rt-radius-sm);
  transition: var(--rt-transition-fast);
}

.mega-list li a:hover {
  background: var(--rt-gray-100);
  color: var(--rt-primary);
}

.mega-list li a span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--rt-gray-500);
  margin-top: 2px;
}

/* Mega List with Descriptions */
.mega-list-desc li a {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-list-desc li a strong {
  font-weight: 600;
  color: var(--rt-dark);
  font-size: 0.875rem;
}

.mega-list-desc li a span {
  font-size: 0.75rem;
  color: var(--rt-gray-500);
  font-weight: 400;
}

.mega-list-desc li a:hover strong {
  color: var(--rt-primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  margin-left: var(--rt-space-lg);
  flex-shrink: 0;
}

.header-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--rt-white);
  border-radius: 2px;
  transition: var(--rt-transition);
}

.site-header.scrolled .mobile-toggle span {
  background: var(--rt-dark);
}

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

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

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--rt-gradient-hero);
  overflow: hidden;
  padding-top: var(--rt-header-height);
}

.hero > .container {
  position: relative;
  z-index: 3;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(0, 82, 204, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 60% 80%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

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

.hero .eyebrow {
  color: var(--rt-secondary);
  font-size: 0.75rem;
  background: rgba(0, 182, 122, 0.1);
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 182, 122, 0.15);
}

.hero .eyebrow::before {
  background: var(--rt-secondary);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  color: var(--rt-white);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  margin-bottom: var(--rt-space-lg);
  font-weight: 800;
  position: relative;
  padding-bottom: var(--rt-space-lg);
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--rt-secondary), var(--rt-accent));
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--rt-space-2xl);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: var(--rt-space-md);
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-buttons .btn {
  pointer-events: auto;
  cursor: pointer;
}

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: var(--rt-space-3xl);
  margin-top: var(--rt-space-4xl);
  padding-top: var(--rt-space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--rt-secondary), transparent);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--rt-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rt-white);
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #fff 60%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--rt-secondary), transparent);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
  opacity: 0.06;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--rt-accent), transparent);
  bottom: 5%;
  right: 15%;
  animation-delay: 5s;
  opacity: 0.05;
}

.hero-shape-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--rt-primary-light), transparent);
  top: 40%;
  right: 10%;
  animation-delay: 10s;
  border-radius: 30%;
  opacity: 0.06;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-25px) rotate(5deg) scale(1.02);
  }
  66% {
    transform: translateY(15px) rotate(-3deg) scale(0.98);
  }
}

/* Hero Swiper */
.hero-swiper .swiper-pagination {
  bottom: 40px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  transition: all 0.4s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--rt-secondary);
  width: 50px;
  box-shadow: 0 0 8px rgba(0, 182, 122, 0.4);
}

/* Trusted logos */
.trusted-bar {
  position: relative;
  z-index: 2;
  padding: var(--rt-space-2xl) 0;
  text-align: center;
}

.trusted-bar p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--rt-space-lg);
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--rt-space-3xl);
  flex-wrap: wrap;
  opacity: 0.5;
}

.trusted-logos img {
  height: 32px;
  filter: brightness(0) invert(1);
}

/* ---------- Trusted Clients Section ---------- */
.trusted-section {
  padding: var(--rt-space-4xl) 0;
  background: var(--rt-white);
  border-bottom: 1px solid var(--rt-gray-200);
  overflow: hidden;
}

.trusted-section .section-header {
  margin-bottom: var(--rt-space-2xl);
}

.trusted-section .section-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rt-gray-500);
  letter-spacing: 0.02em;
}

.trusted-section .trusted-logos {
  opacity: 1;
  flex-direction: column;
  gap: var(--rt-space-2xl);
}

.trusted-logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--rt-space-3xl);
  flex-wrap: wrap;
}

.trusted-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  min-width: 120px;
  padding: 0.5rem;
}

.trusted-logo img {
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s ease;
}

.trusted-logo img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* ---------- What You Can Do Section ---------- */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-2xl);
}

.capability-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-xl);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rt-primary), var(--rt-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-card:hover {
  box-shadow: 0 20px 40px -12px rgba(0, 82, 204, 0.15);
  transform: translateY(-8px);
  border-color: transparent;
}

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

.capability-icon {
  width: 100%;
  height: 160px;
  border-radius: var(--rt-radius-lg) var(--rt-radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.capability-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.capability-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.capability-card:hover .capability-icon img {
  transform: scale(1.08);
}

.capability-icon.communicate,
.capability-icon.transact,
.capability-icon.engage {
  background: transparent;
}

.capability-card-content {
  padding: var(--rt-space-xl) var(--rt-space-2xl) var(--rt-space-2xl);
}

.capability-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  font-size: 0.9375rem;
  margin-bottom: var(--rt-space-lg);
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rt-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 0.75rem;
  color: var(--rt-primary-dark);
  border-bottom-color: var(--rt-primary);
}

.card-link svg {
  transition: var(--rt-transition);
}

/* ---------- Products Section ---------- */
.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-4xl);
  align-items: center;
  padding: var(--rt-space-4xl) 0;
}

.product-block:nth-child(odd) .product-image {
  order: 2;
}

.product-block:nth-child(odd) .product-info {
  order: 1;
}

.product-block:nth-child(even) .product-image {
  order: 1;
}

.product-block:nth-child(even) .product-info {
  order: 2;
}

.product-block + .product-block {
  border-top: 1px solid var(--rt-gray-200);
}

.product-info .eyebrow {
  font-size: 0.75rem;
}

.product-info h3 {
  font-size: 1.75rem;
  margin-bottom: var(--rt-space-md);
}

.product-info p {
  margin-bottom: var(--rt-space-lg);
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--rt-space-xl);
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--rt-gray-700);
}

.product-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.08),
    rgba(0, 182, 122, 0.08)
  );
  color: var(--rt-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  border: 1px solid rgba(0, 182, 122, 0.12);
}

.product-image {
  position: relative;
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
  background: var(--rt-gray-100);
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px -8px rgba(0, 82, 204, 0.12);
  transition: var(--rt-transition);
  border: 1px solid var(--rt-gray-200);
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.product-block:hover .product-image {
  box-shadow: 0 20px 50px -12px rgba(0, 82, 204, 0.25);
  transform: translateY(-6px);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-block:hover .product-image img {
  transform: scale(1.05);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--rt-primary-light) 0%,
    var(--rt-gray-100) 100%
  );
  font-size: 4rem;
  color: var(--rt-primary);
  opacity: 0.4;
}

/* ---------- Industries Section ---------- */
.industries-section {
  background: var(--rt-white);
}

.industries-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-4xl);
  align-items: center;
}

.industries-image {
  background: linear-gradient(135deg, var(--rt-gray-100), #eef4ff);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-xl);
  overflow: hidden;
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.industries-image:hover {
  box-shadow: var(--rt-shadow-lg);
}

.industries-image img {
  width: 100%;
  height: auto;
  display: block;
}

.industries-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--rt-space-md);
}

.industries-subtitle {
  font-size: 1rem;
  color: var(--rt-gray-600);
  margin-bottom: var(--rt-space-xl);
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-md);
  margin-bottom: var(--rt-space-xl);
}

.industry-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-lg);
  transition: var(--rt-transition);
  border: 1px solid var(--rt-gray-200);
  display: flex;
  align-items: flex-start;
  gap: var(--rt-space-md);
}

.industry-card:hover {
  box-shadow: var(--rt-shadow-card-hover);
  transform: translateY(-3px);
  border-color: transparent;
  background: linear-gradient(135deg, #fff, #f8faff);
}

.industry-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--rt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.industry-icon.financial {
  background: #eef4ff;
  color: var(--rt-primary);
}

.industry-icon.retail {
  background: #fff4ed;
  color: var(--rt-accent);
}

.industry-icon.healthcare {
  background: #ffebee;
  color: #e53935;
}

.industry-icon.education {
  background: #e8f5e9;
  color: #43a047;
}

.industry-icon.utilities {
  background: #fff8e1;
  color: #f9a825;
}

.industry-icon.hospitality {
  background: #f3e5f5;
  color: #8e24aa;
}

.industry-text h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--rt-dark);
}

.industry-text p {
  font-size: 0.8125rem;
  color: var(--rt-gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--rt-dark);
  color: var(--rt-white);
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 82, 204, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(0, 182, 122, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.testimonials-section .section-header .eyebrow {
  color: var(--rt-secondary);
}

.testimonials-section .section-header .eyebrow::before {
  background: var(--rt-secondary);
}

.testimonials-section h2 {
  color: var(--rt-white);
}

.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl) var(--rt-space-2xl) var(--rt-space-2xl);
  backdrop-filter: blur(10px);
  position: relative;
  transition: var(--rt-transition);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--rt-space-2xl);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--rt-primary), var(--rt-secondary));
  border-radius: 2px;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--rt-space-xl);
  position: relative;
  padding-left: var(--rt-space-xl);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rt-primary);
  line-height: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rt-primary), var(--rt-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--rt-white);
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.testimonial-meta strong {
  display: block;
  color: var(--rt-white);
  font-size: 0.9375rem;
}

.testimonial-meta span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
}

.testimonials-swiper .swiper-pagination {
  position: relative;
  margin-top: var(--rt-space-2xl);
}

.testimonials-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--rt-primary);
  width: 24px;
  border-radius: 4px;
}

/* ---------- Security Section ---------- */
.security-section {
  background: var(--rt-gray-100);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}

.security-card {
  background: var(--rt-white);
  padding: var(--rt-space-2xl);
  border-radius: var(--rt-radius-xl);
  text-align: center;
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
  position: relative;
  overflow: hidden;
}

.security-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rt-primary), var(--rt-secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.security-card:hover {
  box-shadow: var(--rt-shadow-lg);
  border-color: var(--rt-primary-light);
  transform: translateY(-4px);
}

.security-card:hover::after {
  opacity: 1;
}

.security-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 82, 204, 0.06),
    rgba(0, 182, 122, 0.06)
  );
  color: var(--rt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--rt-space-lg);
  font-size: 1.5rem;
  border: 1px solid rgba(0, 82, 204, 0.08);
  transition: var(--rt-transition);
}

.security-card:hover .security-icon {
  background: var(--rt-gradient-primary);
  color: var(--rt-white);
  border-color: transparent;
  transform: scale(1.08);
}

.security-card h4 {
  margin-bottom: 0.5rem;
}

.security-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--rt-gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 182, 122, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(255, 107, 53, 0.1) 0%,
      transparent 50%
    );
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-4xl);
  align-items: start;
}

.cta-content h2 {
  color: var(--rt-white);
  margin-bottom: var(--rt-space-lg);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-bottom: var(--rt-space-2xl);
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-lg);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: var(--rt-space-md);
  color: rgba(255, 255, 255, 0.8);
}

.cta-contact-item i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rt-secondary);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--rt-transition);
}

.cta-contact-item:hover i {
  background: rgba(0, 182, 122, 0.15);
  border-color: rgba(0, 182, 122, 0.2);
  transform: scale(1.05);
}

.cta-contact-item span {
  font-size: 0.9375rem;
}

/* Contact Form */
.cta-form {
  background: var(--rt-white);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form h3 {
  font-size: 1.375rem;
  margin-bottom: var(--rt-space-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-md);
}

.form-group {
  margin-bottom: var(--rt-space-md);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rt-gray-700);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rt-gray-300);
  border-radius: var(--rt-radius-sm);
  font-family: var(--rt-font-body);
  font-size: 0.9375rem;
  color: var(--rt-dark);
  transition: var(--rt-transition-fast);
  background: var(--rt-white);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rt-primary);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.08);
  background: #fafbff;
}

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

.form-submit-btn {
  width: 100%;
  margin-top: var(--rt-space-sm);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--rt-space-2xl);
}

.form-success.show {
  display: block;
}

.form-success i {
  font-size: 3rem;
  color: var(--rt-secondary);
  margin-bottom: var(--rt-space-md);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--rt-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--rt-space-5xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--rt-space-3xl);
  padding-bottom: var(--rt-space-4xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top.footer-5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.footer-brand .logo-text {
  font-family: var(--rt-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rt-white);
  margin-bottom: var(--rt-space-md);
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--rt-space-xl);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--rt-transition);
  font-size: 0.875rem;
}

.footer-social a:hover {
  background: var(--rt-primary);
  color: var(--rt-white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--rt-white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: var(--rt-space-xl);
  letter-spacing: 0;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  transition: var(--rt-transition-fast);
}

.footer-col ul li a:hover {
  color: var(--rt-white);
  padding-left: 4px;
}

.footer-col ul li a i {
  margin-right: 0.5rem;
  width: 1rem;
  text-align: center;
}

.footer-bottom {
  padding: var(--rt-space-xl) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: var(--rt-space-xl);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.footer-bottom-links a:hover {
  color: var(--rt-white);
}

/* ---------- About Page ---------- */
.about-hero {
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-5xl)) 0
    var(--rt-space-5xl);
  text-align: center;
}

.about-hero h1 {
  color: var(--rt-white);
}

.about-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  margin: var(--rt-space-md) auto 0;
  font-size: 1.125rem;
}

.story-section {
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-4xl);
  align-items: center;
}

.story-image {
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--rt-gray-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}

.value-card {
  text-align: center;
  padding: var(--rt-space-2xl);
  border-radius: var(--rt-radius-lg);
  background: var(--rt-white);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.value-card:hover {
  box-shadow: var(--rt-shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rt-primary-light);
  color: var(--rt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--rt-space-lg);
  font-size: 1.75rem;
}

.value-card h4 {
  margin-bottom: 0.75rem;
}

/* Why Choose Roamtech */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-xl);
}

.why-item {
  display: flex;
  gap: var(--rt-space-md);
  align-items: flex-start;
  padding: var(--rt-space-lg);
  border-radius: var(--rt-radius-md);
  transition: var(--rt-transition);
}

.why-item:hover {
  background: var(--rt-gray-100);
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rt-secondary);
  color: var(--rt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--rt-gray-300);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--rt-space-2xl);
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rt-primary);
  border: 3px solid var(--rt-white);
  box-shadow: var(--rt-shadow-md);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: var(--rt-space-lg);
  background: var(--rt-white);
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
}

.timeline-year {
  font-weight: 800;
  color: var(--rt-primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

/* ---------- Product Pages ---------- */
.product-hero {
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-4xl)) 0
    var(--rt-space-4xl);
  position: relative;
  overflow: hidden;
}

.product-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(0, 82, 204, 0.2) 0%,
      transparent 50%
    );
}

/* ===== Emalify Hero ===== */
.emalify-hero {
  background: #eef2f8 !important;
  padding: calc(var(--rt-header-height) + 3rem) 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.emalify-hero::before {
  display: none;
}

.emalify-hero .product-hero-content h1 {
  color: #0a1628;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.em-highlight {
  color: #002496;
  font-style: italic;
}

.emalify-hero .product-hero-content p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 440px;
}

/* Emalify badges & stats on light bg */
.emalify-hero .hero-badge {
  color: #4a5568;
}
.emalify-hero .hero-badge i {
  color: #00b67a;
}
.emalify-hero .product-stats-row {
  border-top-color: rgba(0, 0, 0, 0.08);
}
.emalify-hero .product-stat .stat-number {
  color: #0a1628;
}
.emalify-hero .product-stat .stat-label {
  color: #718096;
}

/* Force dark header on pages with light hero */
.page-template-page-emalify .site-header .nav-link {
  color: var(--rt-gray-800);
}
.page-template-page-emalify .site-header .nav-link:hover {
  color: var(--rt-primary);
}
.page-template-page-emalify .site-header .site-logo .logo-text {
  color: var(--rt-dark);
}
.page-template-page-emalify .site-header .logo-light {
  display: none;
}
.page-template-page-emalify .site-header .logo-dark {
  display: block;
}
.page-template-page-emalify .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* Emalify pill buttons */
.em-btn-primary {
  background: #002496;
  color: #fff;
  border: 2px solid #002496;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}
.em-btn-primary:hover {
  background: #001a70;
  border-color: #001a70;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 36, 150, 0.3);
}

.em-btn-outline {
  background: transparent;
  color: #0a1628;
  border: 2px solid #cbd5e0;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}
.em-btn-outline:hover {
  border-color: #002496;
  color: #002496;
  transform: translateY(-2px);
}

.em-btn-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.em-btn-arrow.outline {
  background: transparent;
  border: 1.5px solid currentColor;
}
.em-btn-primary:hover .em-btn-arrow,
.em-btn-outline:hover .em-btn-arrow {
  transform: translateX(3px);
}

/* Hero image area */
.emalify-hero .product-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Oval frame */
.em-oval-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 5;
  border-radius: 50% 50% 50% 50% / 47% 47% 53% 53%;
  border: 5px solid #ffe400;
  background: #002496;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 36, 150, 0.35);
  z-index: 2;
}

.em-oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}

/* Decorative SVG icons */
.em-deco {
  position: absolute;
  z-index: 3;
  opacity: 0.85;
}

.em-deco-wifi {
  left: -2%;
  top: 22%;
  animation: emFloat 5s ease-in-out infinite;
}

.em-deco-signal {
  right: 2%;
  top: -4%;
  animation: emFloat 6s ease-in-out infinite;
  animation-delay: -2.5s;
}

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

/* Floating badge chips */
.em-chip {
  position: absolute;
  background: #ffe400;
  padding: 0.6rem 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.em-chip-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002496;
  font-size: 1rem;
  flex-shrink: 0;
}

.em-chip small {
  display: block;
  font-size: 0.6rem;
  color: #1a1a2e;
  opacity: 0.7;
  font-weight: 500;
  line-height: 1.2;
}

.em-chip strong {
  display: block;
  font-size: 0.85rem;
  color: #1a1a2e;
  font-weight: 700;
  line-height: 1.3;
}

.em-chip-top {
  top: 12%;
  right: -8%;
  animation: emChipBob 4.5s ease-in-out infinite;
}

.em-chip-bottom {
  bottom: 10%;
  left: -10%;
  animation: emChipBob 5s ease-in-out infinite;
  animation-delay: -2s;
}

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

/* ===== Emalify Products — Tabbed Layout ===== */
.em-products-section {
  background: #eef2f8;
}

/* Header: title left, description right */
.em-prod-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.em-prod-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #0a1628;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.em-prod-header p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* Two-column layout: nav + cards */
.em-prod-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

/* Left category nav */
.em-prod-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.em-prod-nav-btn {
  background: transparent;
  border: none;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  text-align: left;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  line-height: 1.3;
}

.em-prod-nav-btn:hover {
  color: #0a1628;
  background: #f7f8fc;
}

.em-prod-nav-btn.active {
  background: #ffe400;
  color: #0a1628;
  font-weight: 700;
}

/* Right: cards grid */
.em-prod-cards {
  min-height: 400px;
}

.em-prod-panel {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.em-prod-panel.active {
  display: grid;
  animation: emPanelIn 0.35s ease;
}

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

/* Individual product card */
.em-pcard {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.em-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 36, 150, 0.18);
  background: #002496;
}

.em-pcard:hover .em-pcard-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.em-pcard:hover h4 {
  color: #fff;
}

.em-pcard:hover p,
.em-pcard:hover ul li {
  color: rgba(255, 255, 255, 0.82);
}

.em-pcard:hover ul li::before {
  color: rgba(255, 255, 255, 0.5);
}

.em-pcard:hover .em-card-link {
  color: #fff;
}

.em-pcard-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #d0d8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #002496;
  margin-bottom: 1.25rem;
  background: #f8faff;
}

.em-pcard h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.em-pcard p {
  font-size: 0.85rem;
  color: #5a6577;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.em-pcard ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.em-pcard ul li {
  font-size: 0.85rem;
  color: #5a6577;
  line-height: 1.6;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.35rem;
}

.em-pcard ul li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: #a0aec0;
  font-size: 0.7rem;
  top: 2px;
}

.em-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #002496;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.em-card-link:hover {
  gap: 0.65rem;
  color: #001a70;
}

.em-card-link i {
  font-size: 0.7rem;
}

/* ==================== HOW IT WORKS (Business/Developer) ==================== */

/* --- Polished How It Works Section --- */
.em-hiw-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f5f0e6 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}
.em-hiw-header-polished {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}
.em-hiw-header-polished h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #002496;
  margin-bottom: 0.7rem;
  line-height: 1.13;
}
.em-hiw-header-polished p {
  font-size: 1.08rem;
  color: #4a5568;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 540px;
}
.em-hiw-tabs-polished {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 2.2rem;
}
.em-hiw-tab-polished {
  background: none;
  border: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: #a0aec0;
  padding: 0.7rem 0.5rem 0.7rem 0.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  outline: none;
}
.em-hiw-tab-polished.active {
  color: #002496;
}
.em-hiw-tab-polished.active::after {
  content: '';
  display: block;
  height: 3px;
  background: #ffe400;
  border-radius: 2px 2px 0 0;
  margin-top: 8px;
  width: 100%;
}
.em-hiw-content-polished {
  margin-bottom: 2.5rem;
}
.em-hiw-panel-polished {
  display: none;
}
.em-hiw-panel-polished.active {
  display: block;
  animation: emPanelIn 0.35s ease;
}
.em-hiw-panel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.em-hiw-desc-polished {
  font-size: 1.08rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}
.em-hiw-btn-polished {
  border-radius: 50px;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 36, 150, 0.08);
  margin-left: 0.5rem;
}
.em-hiw-showcase-polished {
  position: relative;
  margin: 3.5rem auto 0 auto;
  max-width: 820px;
  min-height: 420px;
}
.em-hiw-device-polished {
  background: #1a1a2e;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  border: 4px solid #2a2a3e;
  max-width: 820px;
}
.em-hiw-device-polished img {
  width: 100%;
  display: block;
}
.em-hiw-badge-polished {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 50px;
  padding: 0.45rem 1.1rem 0.45rem 0.45rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: #0a1628;
  z-index: 2;
  animation: emChipBob 3s ease-in-out infinite;
}
.em-hiw-badge-icon-polished {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.em-hiw-badge-bt {
  top: -22px;
  left: 18%;
  animation-delay: 0s;
}
.em-hiw-badge-dt {
  top: 10%;
  right: -18px;
  animation-delay: 0.8s;
  background: #002496;
  color: #fff;
}
.em-hiw-badge-php {
  bottom: 10%;
  left: -18px;
  animation-delay: 1.4s;
  background: #002496;
  color: #fff;
}
.em-hiw-badge-js {
  bottom: -18px;
  right: 12%;
  animation-delay: 2s;
}
@media (max-width: 1024px) {
  .em-hiw-header-polished h2 {
    font-size: 2rem;
  }
  .em-hiw-panel-row {
    flex-direction: column;
    gap: 1.2rem;
  }
  .em-hiw-showcase-polished {
    min-height: 320px;
  }
}
@media (max-width: 768px) {
  .em-hiw-header-polished h2 {
    font-size: 1.4rem;
  }
  .em-hiw-tabs-polished {
    gap: 1.2rem;
  }
  .em-hiw-badge-polished {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  }
  .em-hiw-badge-icon-polished {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .em-hiw-badge-bt {
    left: 8%;
  }
  .em-hiw-badge-js {
    right: 4%;
  }
  .em-hiw-device-polished {
    border-radius: 12px;
    border-width: 3px;
  }
  .em-hiw-showcase-polished {
    min-height: 180px;
  }
}

.product-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-4xl);
  align-items: center;
}

.product-hero-content h1 {
  color: var(--rt-white);
  margin-bottom: var(--rt-space-lg);
}

.product-hero-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  margin-bottom: var(--rt-space-2xl);
}

.product-hero-badges {
  display: flex;
  gap: var(--rt-space-xl);
  margin-top: var(--rt-space-2xl);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.hero-badge i {
  color: var(--rt-secondary);
}

.product-stats-row {
  display: flex;
  gap: var(--rt-space-3xl);
  margin-top: var(--rt-space-2xl);
  padding-top: var(--rt-space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-stat .stat-number {
  font-family: var(--rt-font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--rt-white);
}

.product-stat .stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}

.feature-card {
  padding: var(--rt-space-2xl);
  border-radius: var(--rt-radius-lg);
  background: var(--rt-white);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  box-shadow: var(--rt-shadow-card-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--rt-radius-md);
  background: var(--rt-primary-light);
  color: var(--rt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--rt-space-lg);
  font-size: 1.25rem;
}

.feature-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Tabbed Interface */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--rt-space-2xl);
  justify-content: center;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--rt-gray-300);
  border-radius: var(--rt-radius-full);
  background: transparent;
  color: var(--rt-gray-600);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: var(--rt-transition);
  font-family: var(--rt-font-body);
}

.tab-btn:hover {
  border-color: var(--rt-primary);
  color: var(--rt-primary);
}

.tab-btn.active {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
  color: var(--rt-white);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

/* ---------- Solutions Page ---------- */
.solution-block {
  padding: var(--rt-space-4xl) 0;
  border-bottom: 1px solid var(--rt-gray-200);
}

.solution-block:last-child {
  border-bottom: none;
}

/* ---------- Contact Page ---------- */
.contact-hero {
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-5xl)) 0
    var(--rt-space-4xl);
  text-align: center;
}

.contact-hero h1 {
  color: var(--rt-white);
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin: var(--rt-space-md) auto 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
  margin-top: calc(-1 * var(--rt-space-3xl));
  position: relative;
  z-index: 2;
}

.contact-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-2xl);
  text-align: center;
  box-shadow: var(--rt-shadow-lg);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rt-shadow-xl);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rt-primary-light);
  color: var(--rt-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--rt-space-lg);
  font-size: 1.25rem;
}

.contact-card h4 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  margin-bottom: 0;
}

.contact-card a {
  font-weight: 600;
}

.contact-form-section {
  padding: var(--rt-space-5xl) 0;
}

.contact-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
  background: var(--rt-white);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-3xl);
  box-shadow: var(--rt-shadow-lg);
  border: 1px solid var(--rt-gray-200);
}

/* ---------- Blog Styles ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}

.blog-card {
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  background: var(--rt-white);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.blog-card:hover {
  box-shadow: var(--rt-shadow-card-hover);
  transform: translateY(-4px);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--rt-gray-100);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: var(--rt-space-xl);
}

.blog-card-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rt-primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.blog-card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.875rem;
  color: var(--rt-gray-500);
  margin-bottom: var(--rt-space-md);
}

.blog-card-meta {
  font-size: 0.8125rem;
  color: var(--rt-gray-400);
}

/* ---------- Page Internal Sections ---------- */
.page-hero {
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-5xl)) 0
    var(--rt-space-5xl);
  text-align: center;
}

.page-hero h1 {
  color: var(--rt-white);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: var(--rt-space-md) auto 0;
  font-size: 1.125rem;
}

/* ---------- Animations ---------- */
[data-aos] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ---------- Utility Classes ---------- */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-white {
  color: var(--rt-white);
}
.text-primary {
  color: var(--rt-primary);
}
.bg-light {
  background: var(--rt-gray-100);
}
.bg-dark {
  background: var(--rt-dark);
}
.bg-white {
  background: var(--rt-white);
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive ---------- */

/* Tablet: tighten nav spacing */
@media (max-width: 1200px) {
  .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.8125rem;
  }

  .header-cta {
    margin-left: var(--rt-space-sm);
  }

  .header-cta .btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .mega-dropdown.mega-products {
    min-width: 480px;
  }
}

/* Mobile nav + layout breakpoint */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--rt-space-2xl);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .product-block,
  .product-hero-inner,
  .story-grid,
  .industries-layout {
    grid-template-columns: 1fr;
  }

  /* Emalify hero stacks on tablet */
  .emalify-hero .product-hero-image {
    max-width: 420px;
    margin: 2rem auto 0;
  }

  .em-products-grid,
  .em-prod-layout {
    grid-template-columns: 1fr;
  }
  .em-prod-header {
    grid-template-columns: 1fr;
  }
  .em-prod-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .industries-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .industries-content h2 {
    font-size: 2rem;
  }

  .product-block .product-image,
  .product-block .product-info {
    order: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--rt-white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: var(--rt-header-height);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  }

  .primary-nav.active {
    right: 0;
  }

  .primary-nav .nav-menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
  }

  .nav-item {
    border-bottom: 1px solid var(--rt-gray-200);
  }

  .nav-link {
    color: var(--rt-dark);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .nav-link:hover {
    color: var(--rt-primary);
    background: var(--rt-gray-100);
  }

  /* Mobile mega dropdown */
  .mega-dropdown {
    position: static;
    transform: none !important;
    min-width: auto !important;
    max-width: none;
    width: 100%;
    box-shadow: none;
    border: none;
    padding: 0;
    display: none;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    background: var(--rt-gray-50);
  }

  .mega-dropdown.mega-products,
  .mega-dropdown.mega-industry {
    min-width: auto !important;
  }

  .nav-item.open .mega-dropdown {
    display: block;
    padding: var(--rt-space-md) 0;
  }

  .mega-grid {
    display: block;
  }

  .mega-col {
    padding: 0 1.5rem;
    margin-bottom: var(--rt-space-md);
  }

  .mega-col:last-child {
    margin-bottom: 0;
  }

  .mega-heading {
    font-size: 0.75rem;
    color: var(--rt-gray-500);
    padding-bottom: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .mega-list li a {
    padding: 0.625rem 0;
    margin: 0;
    border-radius: 0;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --rt-header-height: 70px;
  }

  .capabilities-grid,
  .grid-3,
  .industries-grid,
  .features-grid,
  .security-grid,
  .contact-cards,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .values-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Emalify hero mobile */
  .emalify-hero {
    padding: calc(var(--rt-header-height) + 2rem) 0 2.5rem;
  }
  .emalify-hero .product-hero-content h1 {
    font-size: 2rem;
  }
  .emalify-hero .product-hero-content p {
    font-size: 0.95rem;
  }
  .emalify-hero .hero-buttons {
    flex-direction: column;
  }
  .em-btn-primary,
  .em-btn-outline {
    width: 100%;
    justify-content: center;
  }
  .em-oval-frame {
    max-width: 280px;
  }
  .em-chip {
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
  }
  .em-chip-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 7px;
  }
  .em-chip small {
    font-size: 0.5rem;
  }
  .em-chip strong {
    font-size: 0.72rem;
  }
  .em-chip-top {
    right: -4%;
    top: 8%;
  }
  .em-chip-bottom {
    left: -4%;
    bottom: 6%;
  }
  .em-deco-wifi {
    width: 32px;
    height: 32px;
  }
  .em-deco-signal {
    width: 44px;
    height: 44px;
  }
  .em-products-grid,
  .em-prod-layout {
    grid-template-columns: 1fr;
  }
  .em-prod-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .em-prod-nav-btn {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  .em-prod-panel.active {
    grid-template-columns: 1fr;
  }
  .em-prod-header {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--rt-space-xl);
  }

  .trusted-logo-row {
    gap: var(--rt-space-xl);
  }

  .trusted-logo {
    min-width: 100px;
    height: 50px;
  }

  .trusted-logo img {
    max-height: 40px;
    max-width: 120px;
  }

  .product-stats-row {
    flex-direction: column;
    gap: var(--rt-space-lg);
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: var(--rt-space-md);
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .section {
    padding: var(--rt-space-3xl) 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--rt-header-height) + var(--rt-space-3xl)) 0
      var(--rt-space-3xl);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--rt-space-md);
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--rt-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--rt-gray-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--rt-gray-500);
}

/* ---------- Selection ---------- */
::selection {
  background: var(--rt-primary);
  color: var(--rt-white);
}

/* ---------- Loading animation ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--rt-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--rt-gray-200);
  border-top-color: var(--rt-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* ---------- Products Showcase ---------- */
.products-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-2xl);
}

.product-showcase-card {
  display: flex;
  gap: var(--rt-space-2xl);
  background: var(--rt-white);
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
  box-shadow: var(--rt-shadow-md);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.product-showcase-card:hover {
  box-shadow: var(--rt-shadow-xl);
  transform: translateY(-2px);
}

.product-showcase-card .psc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: var(--rt-space-2xl);
  color: var(--rt-white);
  font-size: 3rem;
  flex-shrink: 0;
}

.product-showcase-card .psc-icon.communicate {
  background: var(--rt-gradient-primary);
}

.product-showcase-card .psc-icon.transact {
  background: linear-gradient(135deg, #00b67a 0%, #00d68f 100%);
}

.product-showcase-card .psc-icon.engage {
  background: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%);
}

.psc-content {
  padding: var(--rt-space-xl) var(--rt-space-xl) var(--rt-space-xl) 0;
  flex: 1;
}

.psc-content .eyebrow {
  margin-bottom: var(--rt-space-xs);
}

.psc-content h3 {
  margin-bottom: var(--rt-space-md);
}

.psc-content p {
  color: var(--rt-gray-600);
  margin-bottom: var(--rt-space-lg);
}

.psc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--rt-space-lg);
  display: grid;
  gap: 0.5rem;
}

.psc-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--rt-gray-700);
}

.psc-features li i {
  color: var(--rt-secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ---------- CTA Simple ---------- */
.cta-simple {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-simple h2 {
  color: var(--rt-white);
  margin-bottom: var(--rt-space-md);
}

.cta-simple p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--rt-space-xl);
}

/* ---------- Newsletter Form ---------- */
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--rt-radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--rt-white);
  font-size: 1rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--rt-white);
  background: rgba(255, 255, 255, 0.15);
}

/* ---------- Events Page ---------- */
.event-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: var(--rt-space-2xl);
  padding-bottom: var(--rt-space-md);
  border-bottom: 1px solid var(--rt-gray-200);
}

.event-tab {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--rt-gray-300);
  border-radius: var(--rt-radius-full);
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rt-gray-600);
  cursor: pointer;
  transition: var(--rt-transition-fast);
}

.event-tab:hover,
.event-tab.active {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
  color: var(--rt-white);
}

.events-grid {
  display: grid;
  gap: var(--rt-space-xl);
}

.event-card {
  display: flex;
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.event-card:hover {
  box-shadow: var(--rt-shadow-md);
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: var(--rt-space-lg);
  background: var(--rt-gradient-primary);
  color: var(--rt-white);
}

.event-card-date.past {
  background: var(--rt-gray-400);
}

.event-day {
  font-family: var(--rt-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.event-month {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

.event-card-body {
  padding: var(--rt-space-lg) var(--rt-space-xl);
  flex: 1;
}

.event-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-right: 0.5rem;
  margin-bottom: 0.75rem;
}

.event-badge.upcoming {
  background: rgba(0, 182, 122, 0.1);
  color: var(--rt-secondary);
}

.event-badge.virtual {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.event-badge.in-person {
  background: rgba(255, 107, 53, 0.1);
  color: var(--rt-accent);
}

.event-badge.past-badge {
  background: var(--rt-gray-100);
  color: var(--rt-gray-500);
}

.event-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.event-card-body p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--rt-space-md);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rt-space-lg);
  margin-bottom: var(--rt-space-md);
  font-size: 0.875rem;
  color: var(--rt-gray-500);
}

.event-meta i {
  margin-right: 0.375rem;
  color: var(--rt-primary);
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rt-space-xl);
  text-align: center;
}

.stat-block {
  padding: var(--rt-space-xl);
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-sm);
}

.stat-block .stat-number {
  font-family: var(--rt-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rt-primary);
  line-height: 1.1;
}

.stat-block .stat-label {
  font-size: 0.9375rem;
  color: var(--rt-gray-600);
  margin-top: 0.5rem;
}

/* ---------- Program Cards ---------- */
.program-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.program-card:hover {
  box-shadow: var(--rt-shadow-lg);
  transform: translateY(-4px);
}

.program-card-header {
  padding: var(--rt-space-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rt-space-md);
  position: relative;
}

.program-duration {
  position: absolute;
  top: var(--rt-space-md);
  right: var(--rt-space-md);
  background: rgba(255, 255, 255, 0.2);
  color: var(--rt-white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.program-card-body {
  padding: var(--rt-space-xl);
}

.program-card-body h4 {
  margin-bottom: 0.5rem;
}

.program-card-body p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
  margin-bottom: var(--rt-space-md);
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--rt-space-md);
}

.program-tags span {
  padding: 0.25rem 0.625rem;
  background: var(--rt-gray-100);
  color: var(--rt-gray-600);
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ---------- Program Detail Cards (Courses page) ---------- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-xl);
}

.program-detail-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
  box-shadow: var(--rt-shadow-md);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.program-detail-card:hover {
  box-shadow: var(--rt-shadow-xl);
}

.pdc-header {
  padding: var(--rt-space-2xl);
  color: var(--rt-white);
  position: relative;
}

.pdc-badge {
  position: absolute;
  top: var(--rt-space-md);
  right: var(--rt-space-md);
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.pdc-header i {
  font-size: 2rem;
  margin-bottom: var(--rt-space-md);
  opacity: 0.8;
}

.pdc-header h3 {
  color: var(--rt-white);
  margin-bottom: 0.25rem;
}

.pdc-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

.pdc-body {
  padding: var(--rt-space-xl);
}

.pdc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rt-space-md);
  margin-bottom: var(--rt-space-lg);
  padding-bottom: var(--rt-space-md);
  border-bottom: 1px solid var(--rt-gray-200);
}

.pdc-meta span {
  font-size: 0.8125rem;
  color: var(--rt-gray-500);
}

.pdc-meta i {
  margin-right: 0.25rem;
  color: var(--rt-primary);
}

.pdc-body h5 {
  font-size: 0.9375rem;
  margin-bottom: var(--rt-space-md);
  color: var(--rt-dark);
}

.pdc-curriculum {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--rt-space-lg);
}

.pdc-curriculum li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: var(--rt-gray-700);
  border-bottom: 1px solid var(--rt-gray-100);
}

.pdc-curriculum li:last-child {
  border-bottom: none;
}

.pdc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--rt-space-lg);
}

.pdc-tags span {
  padding: 0.25rem 0.625rem;
  background: var(--rt-gray-100);
  color: var(--rt-gray-600);
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 500;
}

.pdc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--rt-space-md);
  border-top: 1px solid var(--rt-gray-200);
}

.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--rt-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-family: var(--rt-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rt-primary);
}

/* ---------- Short Course Cards ---------- */
.short-course-card {
  padding: var(--rt-space-xl);
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  text-align: center;
  transition: var(--rt-transition);
}

.short-course-card:hover {
  box-shadow: var(--rt-shadow-md);
  transform: translateY(-2px);
}

.short-course-card i {
  font-size: 2rem;
  color: var(--rt-primary);
  margin-bottom: var(--rt-space-md);
}

.short-course-card h4 {
  margin-bottom: 0.25rem;
}

.short-course-card p {
  font-size: 0.875rem;
  color: var(--rt-gray-500);
  margin-bottom: var(--rt-space-md);
}

/* ---------- Intake Cards ---------- */
.intake-card {
  padding: var(--rt-space-xl);
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  text-align: center;
}

.intake-quarter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rt-gray-100);
  color: var(--rt-gray-600);
  font-family: var(--rt-font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--rt-space-md);
}

.intake-quarter.active {
  background: var(--rt-gradient-primary);
  color: var(--rt-white);
}

.intake-card h4 {
  margin-bottom: 0.25rem;
}

.intake-dates {
  font-size: 0.875rem;
  color: var(--rt-gray-500);
  margin-bottom: var(--rt-space-md);
}

/* ---------- Step Cards ---------- */
.step-card {
  padding: var(--rt-space-xl);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rt-gradient-primary);
  color: var(--rt-white);
  font-family: var(--rt-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--rt-space-md);
}

.step-card h4 {
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
}

/* ---------- News Page ---------- */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-2xl);
  align-items: center;
  margin-bottom: var(--rt-space-3xl);
}

.news-featured-image {
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
}

.news-featured-content .news-category {
  display: inline-block;
  margin-bottom: var(--rt-space-md);
}

.news-featured-content h2 {
  margin-bottom: var(--rt-space-md);
}

.news-featured-content p {
  color: var(--rt-gray-600);
  margin-bottom: var(--rt-space-md);
}

.news-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 82, 204, 0.08);
  color: var(--rt-primary);
  border-radius: var(--rt-radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-meta {
  display: flex;
  gap: var(--rt-space-lg);
  font-size: 0.8125rem;
  color: var(--rt-gray-500);
  margin-bottom: var(--rt-space-md);
}

.news-meta i {
  margin-right: 0.25rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}

.news-card {
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition);
}

.news-card:hover {
  box-shadow: var(--rt-shadow-md);
  transform: translateY(-3px);
}

.news-card-image {
  overflow: hidden;
}

.news-card-body {
  padding: var(--rt-space-lg);
}

.news-card-body .news-category {
  margin-bottom: var(--rt-space-sm);
}

.news-card-body h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.news-card-body p {
  font-size: 0.875rem;
  color: var(--rt-gray-600);
  margin-bottom: var(--rt-space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Button Outline Variant ---------- */
.btn-outline {
  background: transparent;
  border: 2px solid var(--rt-primary);
  color: var(--rt-primary);
}

.btn-outline:hover {
  background: var(--rt-primary);
  color: var(--rt-white);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--rt-white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--rt-white);
}

/* ---------- Page-Specific Responsive ---------- */

@media (max-width: 1024px) {
  .product-showcase-card {
    flex-direction: column;
  }

  .product-showcase-card .psc-icon {
    min-width: unset;
    min-height: 120px;
  }

  .psc-content {
    padding: var(--rt-space-xl);
  }

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

  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }

  .event-card-date {
    min-width: unset;
    flex-direction: row;
    gap: 0.75rem;
    padding: var(--rt-space-md) var(--rt-space-lg);
  }

  .event-day {
    font-size: 1.75rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: var(--rt-space-md);
  }

  .pdc-footer {
    flex-direction: column;
    gap: var(--rt-space-md);
    text-align: center;
  }

  .pdc-footer .btn {
    width: 100%;
  }
}

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

/* ========================================================
   NEW PRODUCT PAGE STYLES
   ======================================================== */

/* ---------- Check List ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: var(--rt-gray-700);
}

.check-list li i {
  color: var(--rt-secondary, #00b67a);
  margin-top: 0.2em;
  flex-shrink: 0;
}

/* ---------- Features Grid 2-col variant ---------- */
.features-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-xl);
}

/* ---------- How It Works Steps (row layout) ---------- */
.how-steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--rt-space-xl);
  counter-reset: step;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rt-primary);
  color: var(--rt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--rt-font-heading);
  margin: 0 auto var(--rt-space-lg);
}

.how-step h4 {
  margin-bottom: 0.5rem;
}

.how-step p {
  font-size: 0.875rem;
  color: var(--rt-gray-600);
}

/* Connector line between steps (desktop) */
.how-steps-row .how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -12%;
  width: 24%;
  height: 2px;
  background: var(--rt-gray-300);
}

/* ---------- How It Works Steps (column/vertical layout) ---------- */
.how-steps-col {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-xl);
  max-width: 700px;
  margin: 0 auto;
}

.how-steps-col .how-step {
  display: flex;
  align-items: flex-start;
  gap: var(--rt-space-lg);
  text-align: left;
}

.how-steps-col .how-step-number {
  margin: 0;
  flex-shrink: 0;
}

/* ---------- Pricing Table ---------- */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--rt-white);
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  box-shadow: var(--rt-shadow-md);
}

.pricing-table thead {
  background: var(--rt-primary);
  color: var(--rt-white);
}

.pricing-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--rt-gray-200);
}

.pricing-table tbody tr:hover {
  background: var(--rt-gray-100);
}

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

/* ---------- Feature Outcome (arrow results) ---------- */
.feature-outcome {
  display: block;
  font-size: 0.8125rem;
  color: var(--rt-secondary, #00b67a);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ---------- Hero Variant Backgrounds ---------- */
.bulk-sms-hero {
  background: linear-gradient(135deg, #002496 0%, #0052cc 60%, #0065ff 100%);
}

.whatsapp-hero {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 60%, #25d366 100%);
}

.bulk-emails-hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 60%, #3949ab 100%);
}

.ussd-hero {
  background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 60%, #8e24aa 100%);
}

.shortcodes-hero {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 60%, #1e88e5 100%);
}

.airtime-hero {
  background: linear-gradient(135deg, #004d40 0%, #00695c 60%, #00897b 100%);
}

.emalichat-hero {
  background: linear-gradient(135deg, #1565c0 0%, #1976d2 60%, #42a5f5 100%);
}

.voice-hero {
  background: linear-gradient(135deg, #bf360c 0%, #d84315 60%, #f4511e 100%);
}

.surveys-hero {
  background: linear-gradient(135deg, #283593 0%, #3949ab 60%, #5c6bc0 100%);
}

.financial-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 60%, #43a047 100%);
}

.skiza-hero {
  background: linear-gradient(135deg, #e65100 0%, #ef6c00 60%, #ff9800 100%);
}

.omnichannel-hero {
  background: linear-gradient(135deg, #002496 0%, #0052cc 50%, #00b67a 100%);
}

/* All product hero variants share base overlay */
.bulk-sms-hero::before,
.whatsapp-hero::before,
.bulk-emails-hero::before,
.ussd-hero::before,
.shortcodes-hero::before,
.airtime-hero::before,
.emalichat-hero::before,
.voice-hero::before,
.surveys-hero::before,
.financial-hero::before,
.skiza-hero::before,
.omnichannel-hero::before {
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    );
}

/* ---------- Product Hero Responsive ---------- */
@media (max-width: 768px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: var(--rt-space-xl);
    text-align: center;
  }

  .product-hero-content h1 {
    font-size: 2rem;
  }

  .product-hero-badges {
    justify-content: center;
  }

  .product-stats-row {
    flex-wrap: wrap;
    gap: var(--rt-space-xl);
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

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

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

  .how-steps-row .how-step::after {
    display: none;
  }
}

/* ==========================================================================
   BULK SMS PAGE — Premium Design
   ========================================================================== */

/* ----- Hero (light Emalify-style) ----- */
.bsms-hero {
  background: #eef2f8 !important;
  padding: calc(var(--rt-header-height) + 3rem) 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.bsms-hero::before {
  display: none;
}

.bsms-hero .product-hero-content h1 {
  color: #0a1628;
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.bsms-highlight {
  color: #002496;
  position: relative;
}
.bsms-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(255, 228, 0, 0.45);
  border-radius: 4px;
  z-index: -1;
}

.bsms-hero .product-hero-content p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 440px;
}
.bsms-hero .hero-badge {
  color: #4a5568;
}
.bsms-hero .hero-badge i {
  color: #00b67a;
}

/* Force dark header on Bulk SMS page */
.page-template-page-bulk-sms .site-header .nav-link {
  color: var(--rt-gray-800);
}
.page-template-page-bulk-sms .site-header .nav-link:hover {
  color: var(--rt-primary);
}
.page-template-page-bulk-sms .site-header .site-logo .logo-text {
  color: var(--rt-dark);
}
.page-template-page-bulk-sms .site-header .logo-light {
  display: none;
}
.page-template-page-bulk-sms .site-header .logo-dark {
  display: block;
}
.page-template-page-bulk-sms .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* ----- Phone Mockup ----- */
.bsms-hero .product-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.bsms-phone-mockup {
  width: 280px;
  min-height: 440px;
  background: #fff;
  border-radius: 32px;
  border: 4px solid #1a365d;
  box-shadow:
    0 40px 80px -20px rgba(0, 36, 150, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.bsms-phone-notch {
  width: 100px;
  height: 24px;
  background: #1a365d;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}
.bsms-phone-screen {
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

/* SMS Bubbles */
.bsms-bubble {
  background: #f0f4ff;
  border-radius: 12px 12px 12px 2px;
  padding: 0.75rem 0.875rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #1a365d;
  position: relative;
  animation: bsmsBubbleIn 0.6s ease both;
}
.bsms-bubble-label {
  display: inline-block;
  background: #002496;
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 700;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.bsms-bubble-time {
  display: block;
  text-align: right;
  font-size: 0.625rem;
  color: #a0aec0;
  margin-top: 0.25rem;
}
.bsms-bubble-time i {
  color: #00b67a;
  font-size: 0.5625rem;
}

@keyframes bsmsBubbleIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating chips */
.bsms-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #fff;
  border-radius: 14px;
  padding: 0.625rem 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 3;
  font-size: 0.8125rem;
}
.bsms-float-chip small {
  display: block;
  font-size: 0.6875rem;
  color: #a0aec0;
}
.bsms-float-chip strong {
  display: block;
  font-size: 0.875rem;
  color: #0a1628;
  font-weight: 700;
}
.bsms-float-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 36, 150, 0.1);
  color: #002496;
  font-size: 1rem;
}
.bsms-float-chip-top {
  top: 8%;
  right: -5%;
}
.bsms-float-chip-bottom {
  bottom: 12%;
  left: -10%;
}

/* Decorative SVGs */
.bsms-deco {
  position: absolute;
  opacity: 0.15;
  z-index: 1;
}
.bsms-deco-envelope {
  top: 5%;
  left: 2%;
  animation: bsmsFloat 6s ease-in-out infinite;
}
.bsms-deco-chat {
  bottom: 8%;
  right: 4%;
  animation: bsmsFloat 5s ease-in-out infinite 1s;
}
.bsms-deco-bolt {
  top: 15%;
  right: 8%;
  animation: bsmsFloat 4s ease-in-out infinite 0.5s;
}

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

/* ----- Three Pillars ----- */
.bsms-pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #fffcf0;
  border: 1px solid rgba(255, 228, 0, 0.25);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl) var(--rt-space-xl);
}
.bsms-pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0 var(--rt-space-lg);
}
.bsms-pillar-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.bsms-pillar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bsms-pillar:hover .bsms-pillar-circle {
  transform: scale(1.08);
  box-shadow: 0 16px 48px -8px rgba(0, 0, 0, 0.3);
}
.bsms-pillar-tag {
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-align: center;
  white-space: nowrap;
}
.bsms-pillar-divider {
  width: 1px;
  height: 120px;
  background: rgba(0, 0, 0, 0.08);
  border-style: dashed;
  flex-shrink: 0;
}

/* ----- Value List (below pillars) ----- */
.bsms-value-list {
  max-width: 800px;
  margin: var(--rt-space-2xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-lg);
}
.bsms-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bsms-value-bullet {
  flex-shrink: 0;
  margin-top: 0.35rem;
  font-size: 0.5rem;
  color: #0a1628;
}
.bsms-value-item h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--rt-gray-900);
}
.bsms-value-item p {
  font-size: 0.9375rem;
  color: var(--rt-gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ----- SMS Type Tabs ----- */
.bsms-types-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--rt-space-2xl);
}
.bsms-type-tab {
  padding: 0.875rem 2rem;
  border: 2px solid var(--rt-gray-300);
  border-radius: 100px;
  background: #fff;
  color: var(--rt-gray-600);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--rt-font-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bsms-type-tab:hover {
  border-color: var(--rt-primary);
  color: var(--rt-primary);
}
.bsms-type-tab.active {
  background: var(--rt-primary);
  border-color: var(--rt-primary);
  color: #fff;
}
.bsms-type-tab i {
  font-size: 0.875rem;
}

/* Type Panel */
.bsms-type-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-3xl);
  align-items: center;
  background: #fff;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-3xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--rt-gray-200);
}
.bsms-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(0, 36, 150, 0.08);
  color: #002496;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.bsms-type-info h3 {
  margin-bottom: 0.75rem;
}
.bsms-type-info h5 {
  margin: 1.25rem 0 0.75rem;
  font-size: 0.9375rem;
}
.bsms-type-info p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
}

.bsms-use-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bsms-use-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: var(--rt-gray-700);
}
.bsms-use-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #002496;
  flex-shrink: 0;
}
.bsms-ideal-for {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--rt-gray-100);
  border-radius: var(--rt-radius-md);
  font-size: 0.8125rem;
  color: var(--rt-gray-600);
  border-left: 3px solid #002496;
}

/* SMS Message Preview Cards */
.bsms-msg-preview {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--rt-gray-200);
  transition: transform 0.3s ease;
}
.bsms-msg-preview:hover {
  transform: translateY(-3px);
}
.bsms-msg-header {
  padding: 0.625rem 1rem;
  background: #f7fafc;
  font-size: 0.75rem;
  font-weight: 700;
  color: #002496;
  border-bottom: 1px solid var(--rt-gray-200);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.bsms-msg-body {
  padding: 0.875rem 1rem;
}
.bsms-msg-from {
  font-size: 0.6875rem;
  color: #a0aec0;
  margin-bottom: 0.375rem;
}
.bsms-msg-body p {
  font-size: 0.8125rem;
  color: #2d3748;
  line-height: 1.5;
  margin: 0;
}
.bsms-msg-footer {
  padding: 0.5rem 1rem;
  border-top: 1px solid var(--rt-gray-200);
  font-size: 0.6875rem;
  color: #a0aec0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ----- Elevate Cards ----- */
.bsms-elevate-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rt-space-xl);
}
.bsms-elevate-card {
  background: #fff;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  border: 1px solid var(--rt-gray-200);
  transition: all 0.4s ease;
  position: relative;
}
.bsms-elevate-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px -16px rgba(0, 36, 150, 0.15);
  border-color: transparent;
}
.bsms-elevate-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #002496, #0052cc);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: var(--rt-space-lg);
}
.bsms-elevate-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}
.bsms-elevate-card p {
  font-size: 0.875rem;
  color: var(--rt-gray-600);
  margin-bottom: 1rem;
}
.bsms-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #002496;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.3s ease;
}
.bsms-card-link:hover {
  gap: 0.625rem;
}

/* ----- Why Emalify (dark section) ----- */
.bsms-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rt-space-xl);
}
.bsms-why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
}
.bsms-why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
  border-color: rgba(255, 228, 0, 0.3);
}
.bsms-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffe400, #f59e0b);
  color: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto var(--rt-space-lg);
}
.bsms-why-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}
.bsms-why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

/* ----- Industry Tabs ----- */
.bsms-industries-section {
  background: #f7fafc;
}
.bsms-industry-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: var(--rt-space-2xl);
  flex-wrap: wrap;
}
.bsms-ind-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 2px solid var(--rt-gray-200);
  border-radius: var(--rt-radius-lg);
  background: #fff;
  cursor: pointer;
  font-family: var(--rt-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rt-gray-600);
  transition: all 0.3s ease;
  min-width: 140px;
}
.bsms-ind-tab i {
  font-size: 1.25rem;
}
.bsms-ind-tab:hover {
  border-color: #002496;
  color: #002496;
}
.bsms-ind-tab.active {
  background: #002496;
  border-color: #002496;
  color: #fff;
}

/* Industry panels */
.bsms-ind-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-3xl);
  align-items: center;
  background: #fff;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-3xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--rt-gray-200);
  animation: fadeIn 0.4s ease;
}
.bsms-ind-panel.active {
  display: grid;
}

.bsms-ind-icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(0, 36, 150, 0.08);
  color: #002496;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--rt-space-lg);
}
.bsms-ind-content h3 {
  margin-bottom: 0.75rem;
}
.bsms-ind-content p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
}
.bsms-ind-outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: #f0fdf4;
  border-radius: var(--rt-radius-md);
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.875rem;
}
.bsms-ind-outcome i {
  color: #00b67a;
  margin-top: 0.15em;
}
.bsms-ind-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ----- Pricing Steps ----- */
.bsms-pricing-step {
  display: flex;
  gap: var(--rt-space-xl);
  align-items: flex-start;
  background: #fff;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--rt-gray-200);
  margin-bottom: var(--rt-space-xl);
}
.bsms-pricing-step-badge {
  background: #002496;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bsms-pricing-step-content h4 {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.bsms-pricing-step-content p {
  color: var(--rt-gray-600);
  font-size: 0.9375rem;
  margin: 0;
}
.bsms-tag-onetime {
  background: #fef3c7;
  color: #92400e;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.625rem;
  border-radius: 100px;
}
.bsms-pricing-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #f7fafc;
  border-radius: var(--rt-radius-md);
  border: 1px solid var(--rt-gray-200);
  flex-wrap: wrap;
  gap: 1rem;
}
.bsms-pricing-networks {
  display: flex;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  flex-wrap: wrap;
}
.bsms-pricing-networks span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.bsms-pricing-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #002496;
}
.bsms-pricing-amount small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--rt-gray-500);
}

/* Pricing Cards Grid */
.bsms-pricing-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--rt-space-md);
  margin-top: var(--rt-space-xl);
}
.bsms-price-card {
  background: #fff;
  border-radius: var(--rt-radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 2px solid var(--rt-gray-200);
  transition: all 0.3s ease;
  position: relative;
}
.bsms-price-card:hover {
  border-color: #002496;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -8px rgba(0, 36, 150, 0.12);
}
.bsms-price-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rt-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.bsms-price-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0a1628;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bsms-price-per {
  font-size: 0.75rem;
  color: var(--rt-gray-500);
  margin-bottom: 0.75rem;
}
.bsms-price-volume {
  font-size: 0.75rem;
  color: var(--rt-gray-500);
  padding-top: 0.75rem;
  border-top: 1px solid var(--rt-gray-200);
}

/* Popular card highlight */
.bsms-price-popular {
  border-color: #002496;
  background: linear-gradient(180deg, #f0f4ff 0%, #fff 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 40px -8px rgba(0, 36, 150, 0.15);
}
.bsms-price-popular:hover {
  transform: scale(1.05) translateY(-4px);
}
.bsms-price-popular-tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #002496;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Enterprise card */
.bsms-price-enterprise {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  border-color: #1a365d;
}
.bsms-price-enterprise .bsms-price-label {
  color: rgba(255, 255, 255, 0.6);
}
.bsms-price-enterprise .bsms-price-amount {
  color: #ffe400;
}
.bsms-price-enterprise .bsms-price-per {
  color: rgba(255, 255, 255, 0.5);
}
.bsms-price-enterprise .bsms-price-volume {
  color: rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 0.1);
}
.bsms-price-enterprise:hover {
  transform: translateY(-4px);
}

/* Pricing badges */
.bsms-pricing-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: var(--rt-space-2xl);
  flex-wrap: wrap;
}
.bsms-pricing-badges span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rt-gray-600);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.bsms-pricing-badges i {
  color: #00b67a;
}

/* ----- How It Works Timeline ----- */
.bsms-steps-timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 40px;
}
.bsms-steps-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #002496 0%, #00b67a 100%);
}
.bsms-step {
  display: flex;
  gap: var(--rt-space-lg);
  align-items: flex-start;
  position: relative;
  padding-bottom: var(--rt-space-2xl);
}
.bsms-step:last-child {
  padding-bottom: 0;
}
.bsms-step-marker {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.bsms-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #002496;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: var(--rt-font-heading);
  box-shadow: 0 4px 16px rgba(0, 36, 150, 0.3);
}
.bsms-step-content {
  background: #fff;
  border-radius: var(--rt-radius-lg);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--rt-gray-200);
  flex: 1;
  transition: all 0.3s ease;
}
.bsms-step-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 36, 150, 0.15);
}
.bsms-step-content h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.bsms-step-content p {
  font-size: 0.875rem;
  color: var(--rt-gray-600);
  margin: 0;
}

/* ----- CTA Checks ----- */
.bsms-cta-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bsms-cta-checks span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

/* ----- WhatsApp Float ----- */
.bsms-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: #25d366;
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: all 0.3s ease;
}
.bsms-wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.bsms-wa-float i {
  font-size: 1.25rem;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .bsms-elevate-grid,
  .bsms-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bsms-pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .bsms-pillars {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .bsms-pillar-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .bsms-hero .product-hero-image {
    min-height: 380px;
  }
  .bsms-float-chip-top {
    right: 5%;
  }
  .bsms-float-chip-bottom {
    left: 0%;
  }

  .bsms-type-panel,
  .bsms-ind-panel {
    grid-template-columns: 1fr;
  }

  .bsms-elevate-grid,
  .bsms-why-grid {
    grid-template-columns: 1fr;
  }

  .bsms-pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .bsms-price-popular {
    transform: none;
  }
  .bsms-price-popular:hover {
    transform: translateY(-4px);
  }

  .bsms-pricing-step {
    flex-direction: column;
  }

  .bsms-industry-tabs {
    gap: 0.375rem;
  }
  .bsms-ind-tab {
    min-width: 100px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .bsms-pricing-cards {
    grid-template-columns: 1fr;
  }
  .bsms-types-tabs {
    flex-direction: column;
  }
  .bsms-wa-float span {
    display: none;
  }
  .bsms-wa-float {
    padding: 1rem;
    border-radius: 50%;
  }
}

/* ======================================================================
   WHATSAPP PAGE STYLES (.wa-*)
   ====================================================================== */

/* ---- Hero ---- */
.wa-hero {
  background: linear-gradient(
    135deg,
    #e8f5e9 0%,
    #f1f8e9 50%,
    #e0f2f1 100%
  ) !important;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.wa-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 20%,
      rgba(37, 211, 102, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(7, 94, 84, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.wa-hero .product-hero-content h1 {
  color: #1a1a2e;
}
.wa-hero .product-hero-content p {
  color: #4a5568;
}
.wa-hero .hero-badge {
  color: #2d3748;
}
.wa-highlight {
  background: linear-gradient(135deg, #25d366, #128c7e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Phone Mockup ---- */
.wa-phone-mockup {
  width: 280px;
  background: #fff;
  border-radius: 32px;
  box-shadow:
    0 25px 60px rgba(7, 94, 84, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 0 0 2px rgba(7, 94, 84, 0.08);
  padding: 12px;
  position: relative;
  margin: 0 auto;
}
.wa-phone-notch {
  width: 100px;
  height: 24px;
  background: #e2e8f0;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 0;
}
.wa-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #075e54;
  border-radius: 12px 12px 0 0;
  margin-top: 8px;
}
.wa-phone-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.wa-phone-header-info strong {
  color: #fff;
  font-size: 0.85rem;
  display: block;
}
.wa-phone-header-info small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}
.wa-phone-screen {
  background: #ece5dd;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 260px;
  border-radius: 0 0 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d5cec3' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.wa-chat-bubble {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
  position: relative;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}
.wa-chat-received {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: #303030;
}
.wa-chat-sent {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #303030;
}
.wa-chat-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #999;
  margin-top: 4px;
}
.wa-chat-time i {
  color: #53bdeb;
  margin-left: 2px;
}

/* ---- Decorative SVGs ---- */
.wa-deco {
  position: absolute;
  opacity: 0.5;
  animation: waDecoFloat 6s ease-in-out infinite;
}
.wa-deco-shield {
  top: 8%;
  right: 5%;
  animation-delay: 0s;
}
.wa-deco-chat {
  bottom: 15%;
  left: 2%;
  animation-delay: 2s;
}
.wa-deco-bell {
  top: 25%;
  left: 8%;
  animation-delay: 4s;
}
@keyframes waDecoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

/* ---- Floating Stat Chips ---- */
.wa-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.12);
  z-index: 2;
}
.wa-float-chip-top {
  top: 10%;
  right: -30px;
}
.wa-float-chip-bottom {
  bottom: 12%;
  left: -30px;
}
.wa-float-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.wa-float-chip div small {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wa-float-chip div strong {
  font-size: 0.95rem;
  color: #1a1a2e;
}

/* ---- Transform Cards ---- */
.wa-transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.wa-transform-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(7, 94, 84, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wa-transform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(7, 94, 84, 0.12);
}
.wa-transform-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  margin: 0 auto 1.25rem;
}
.wa-transform-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #1a1a2e;
}
.wa-transform-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Solution Tabs ---- */
.wa-solution-tabs {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.wa-sol-tab {
  flex: 1;
  padding: 14px 24px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-radius: 10px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wa-sol-tab.active {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.wa-sol-tab:hover:not(.active) {
  color: #075e54;
  background: rgba(37, 211, 102, 0.08);
}

/* ---- Solution Panels ---- */
.wa-sol-panel {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.wa-sol-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.wa-sol-content {
  padding: 2.5rem;
}
.wa-sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.wa-sol-content h3 {
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.wa-sol-subtitle {
  color: #64748b;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.wa-sol-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wa-sol-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wa-sol-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 2px;
}
.wa-sol-features li div strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.wa-sol-features li div {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---- Solution Visual — Phone Mini ---- */
.wa-sol-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0faf5, #e0f2f1);
}
.wa-sol-phone-mini {
  width: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(7, 94, 84, 0.12);
  overflow: hidden;
}
.wa-sol-phone-bar {
  padding: 12px 16px;
  background: #075e54;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-sol-phone-bar i {
  font-size: 1.1rem;
}
.wa-sol-phone-body {
  padding: 20px 16px;
}
.wa-sol-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.wa-sol-profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.wa-sol-profile strong {
  display: block;
  font-size: 0.9rem;
  color: #1a1a2e;
}
.wa-sol-profile small {
  color: #999;
  font-size: 0.75rem;
}
.wa-sol-quick-replies {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wa-sol-quick-replies span {
  padding: 6px 14px;
  border: 1px solid #25d366;
  color: #25d366;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ---- Solution Visual — API Demo ---- */
.wa-sol-api-demo {
  width: 300px;
  background: #1e293b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.wa-sol-api-bar {
  padding: 10px 14px;
  background: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #94a3b8;
}
.wa-sol-api-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.wa-sol-api-code {
  padding: 16px;
  margin: 0;
  overflow-x: auto;
}
.wa-sol-api-code code {
  font-family: 'Fira Code', 'SF Mono', monospace;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #a5f3fc;
}

/* ---- Customer Journey Pipeline ---- */
.wa-journey-pipeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.wa-journey-stage {
  flex: 1;
  text-align: center;
  max-width: 260px;
  padding: 0 1rem;
}
.wa-journey-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.wa-journey-stage h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.wa-journey-stage p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}
.wa-journey-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 1.2rem;
  padding-top: 20px;
  min-width: 30px;
}

/* ---- Dark Service Section ---- */
.wa-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.wa-service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s,
    background 0.3s;
}
.wa-service-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.wa-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #34d399;
  margin-bottom: 1rem;
}
.wa-service-card h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.wa-service-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Customer Service sub-row */
.wa-cs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.wa-cs-card {
  text-align: center;
  padding: 1.5rem;
}
.wa-cs-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #34d399;
  margin: 0 auto 1rem;
}
.wa-cs-card h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.wa-cs-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---- Industry Tabs ---- */
.wa-industries-section {
  background: #fafffe;
}
.wa-industry-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wa-ind-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s;
}
.wa-ind-tab.active {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}
.wa-ind-tab:hover:not(.active) {
  border-color: #25d366;
  color: #075e54;
}

/* ---- Industry Panels ---- */
.wa-ind-panel {
  display: none;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.wa-ind-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.wa-ind-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wa-ind-icon-lg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #16a34a;
  margin-bottom: 1rem;
}
.wa-ind-content h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.wa-ind-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}
.wa-ind-outcome {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 12px 16px;
  background: #f0fdf4;
  border-radius: 10px;
  border-left: 3px solid #25d366;
}
.wa-ind-outcome i {
  color: #25d366;
}
.wa-ind-outcome span {
  font-size: 0.9rem;
  color: #1a1a2e;
}

/* ---- Industry Chat Preview ---- */
.wa-ind-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f0faf5, #e0f2f1);
}
.wa-ind-chat-preview {
  width: 320px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 94, 84, 0.1);
}
.wa-ind-chat-header {
  padding: 12px 16px;
  background: #075e54;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wa-ind-chat-msg {
  padding: 16px;
  background: #ece5dd;
}
.wa-ind-chat-msg p {
  background: #dcf8c6;
  padding: 10px 14px;
  border-radius: 8px 8px 0 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #303030;
  margin: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.wa-ind-chat-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: #999;
  margin-top: 6px;
}

/* ---- How It Works Timeline ---- */
.wa-steps-timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
.wa-steps-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #25d366, #075e54);
  border-radius: 3px;
}
.wa-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
}
.wa-step:last-child {
  margin-bottom: 0;
}
.wa-step-marker {
  position: relative;
  z-index: 1;
}
.wa-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.wa-step-content {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(37, 211, 102, 0.1);
}
.wa-step-content h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
}
.wa-step-content p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* ---- CTA Checks ---- */
.wa-cta-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wa-cta-checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

/* ---- WhatsApp Float Button ---- */
.wa-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.wa-wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.wa-wa-float i {
  font-size: 1.4rem;
}

/* ---- Dark header override for WhatsApp page ---- */
.page-template-page-whatsapp .site-header {
  background: transparent;
}
.page-template-page-whatsapp .site-header .nav-link {
  color: var(--rt-gray-800);
}
.page-template-page-whatsapp .site-header .nav-link:hover {
  color: #075e54;
}
.page-template-page-whatsapp .site-header .site-logo .logo-text {
  color: var(--rt-dark);
}
.page-template-page-whatsapp .site-header .logo-light {
  display: none;
}
.page-template-page-whatsapp .site-header .logo-dark {
  display: block;
}
.page-template-page-whatsapp .site-header .mobile-toggle span {
  background: var(--rt-dark);
}
.page-template-page-whatsapp .site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---- Responsive: WhatsApp ---- */
@media (max-width: 1024px) {
  .wa-sol-panel.active {
    grid-template-columns: 1fr;
  }
  .wa-sol-visual {
    padding: 2rem;
  }
  .wa-ind-panel.active {
    grid-template-columns: 1fr;
  }
  .wa-journey-pipeline {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .wa-journey-connector {
    display: none;
  }
  .wa-journey-stage {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: none;
  }
  .wa-service-grid,
  .wa-cs-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wa-hero {
    padding: 4rem 0 3rem;
    min-height: auto;
  }
  .wa-phone-mockup {
    width: 240px;
  }
  .wa-float-chip {
    display: none;
  }
  .wa-deco {
    display: none;
  }
  .wa-transform-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .wa-solution-tabs {
    max-width: 100%;
  }
  .wa-sol-tab {
    font-size: 0.85rem;
    padding: 12px 16px;
  }
  .wa-journey-stage {
    flex: 0 0 100%;
  }
  .wa-service-grid,
  .wa-cs-row {
    grid-template-columns: 1fr;
  }
  .wa-industry-tabs {
    flex-direction: column;
  }
  .wa-ind-tab {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .wa-solution-tabs {
    flex-direction: column;
  }
  .wa-wa-float span {
    display: none;
  }
  .wa-wa-float {
    padding: 1rem;
    border-radius: 50%;
  }
}

/* ======================================================================
   BULK EMAILS PAGE STYLES (.bem-*)
   ====================================================================== */

/* ---- Hero ---- */
.bem-hero {
  background: linear-gradient(
    135deg,
    #e8eaf6 0%,
    #f3e5f5 30%,
    #ede7f6 60%,
    #e8eaf6 100%
  ) !important;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.bem-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 20%,
      rgba(57, 73, 171, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(26, 35, 126, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.bem-hero .product-hero-content h1 {
  color: #1a1a2e;
}
.bem-hero .product-hero-content p {
  color: #4a5568;
}
.bem-hero .hero-badge {
  color: #1a237e;
  font-weight: 600;
}
.bem-hero .hero-badge i {
  color: #3949ab;
}
.bem-highlight {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Dark header override ---- */
.page-template-page-bulk-emails .site-header {
  background: transparent;
}
.page-template-page-bulk-emails .site-header .nav-link {
  color: var(--rt-gray-800);
}
.page-template-page-bulk-emails .site-header .nav-link:hover {
  color: #3949ab;
}
.page-template-page-bulk-emails .site-header .site-logo .logo-text {
  color: var(--rt-dark);
}
.page-template-page-bulk-emails .site-header .logo-light {
  display: none;
}
.page-template-page-bulk-emails .site-header .logo-dark {
  display: block;
}
.page-template-page-bulk-emails .site-header .mobile-toggle span {
  background: var(--rt-dark);
}
.page-template-page-bulk-emails .site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ---- Inbox Mockup ---- */
.bem-hero .product-hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bem-inbox-mockup {
  width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 25px 60px rgba(26, 35, 126, 0.12),
    0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.bem-inbox-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.bem-inbox-dots {
  display: flex;
  gap: 6px;
}
.bem-inbox-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.bem-inbox-search {
  flex: 1;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.72rem;
  color: #94a3b8;
}
.bem-inbox-tabs {
  display: flex;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 16px;
}
.bem-inbox-tabs span {
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid transparent;
  cursor: default;
}
.bem-inbox-tabs span.active {
  color: #3949ab;
  border-bottom-color: #3949ab;
}
.bem-inbox-list {
  padding: 8px 0;
}
.bem-inbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s;
}
.bem-inbox-item:last-child {
  border-bottom: none;
}
.bem-inbox-unread {
  background: #f0f4ff;
}
.bem-inbox-avatar {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.bem-inbox-preview {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.bem-inbox-from {
  font-weight: 600;
  font-size: 0.78rem;
  color: #1a1a2e;
  margin-bottom: 1px;
}
.bem-inbox-subject {
  font-size: 0.75rem;
  font-weight: 500;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bem-inbox-snippet {
  font-size: 0.7rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bem-inbox-time {
  font-size: 0.68rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* ---- Decorative SVGs ---- */
.bem-deco {
  position: absolute;
  opacity: 0.45;
  animation: bemDecoFloat 6s ease-in-out infinite;
}
.bem-deco-envelope {
  top: 5%;
  right: 2%;
  animation-delay: 0s;
}
.bem-deco-at {
  bottom: 18%;
  left: 0%;
  animation-delay: 2s;
}
.bem-deco-send {
  top: 30%;
  left: 5%;
  animation-delay: 4s;
}
@keyframes bemDecoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(5deg);
  }
}

/* ---- Floating Stat Chips ---- */
.bem-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(26, 35, 126, 0.1);
  z-index: 2;
}
.bem-float-chip-top {
  top: 8%;
  right: -24px;
}
.bem-float-chip-bottom {
  bottom: 10%;
  left: -24px;
}
.bem-float-chip-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(57, 73, 171, 0.12);
  color: #3949ab;
}
.bem-float-chip div small {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bem-float-chip div strong {
  font-size: 0.95rem;
  color: #1a1a2e;
}

/* ---- Feature Cards ---- */
.bem-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bem-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(57, 73, 171, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bem-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(57, 73, 171, 0.1);
}
.bem-feature-wide {
  grid-column: 1 / -1;
}
.bem-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, #3949ab, #283593);
  margin-bottom: 1.25rem;
}
.bem-feature-card h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #1a1a2e;
}
.bem-feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}
.bem-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3949ab;
  text-decoration: none;
  transition: gap 0.2s;
}
.bem-card-link:hover {
  gap: 10px;
  color: #283593;
}

/* ---- Analytics Mini Preview ---- */
.bem-analytics-preview {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}
.bem-stat {
  text-align: center;
}
.bem-stat-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--bem-stat-color, #3949ab);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}
.bem-stat-value {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bem-stat-color, #3949ab);
}
.bem-stat small {
  font-size: 0.72rem;
  color: #64748b;
}

/* ---- Security Cards (Dark Section) ---- */
.bem-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bem-security-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s,
    background 0.3s;
}
.bem-security-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.bem-security-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(121, 134, 203, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7986cb;
  margin-bottom: 1.25rem;
}
.bem-security-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.bem-security-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Security meter */
.bem-security-meter {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.bem-meter-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.bem-meter-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}
.bem-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, #7986cb, #3949ab);
  border-radius: 3px;
}
.bem-meter-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #7986cb;
}

/* Security badges */
.bem-security-badges {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bem-security-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.bem-security-badges span i {
  color: #7986cb;
}

/* Auth tags */
.bem-auth-tags {
  display: flex;
  gap: 8px;
  margin-top: 1.25rem;
}
.bem-auth-tag {
  padding: 5px 14px;
  background: rgba(121, 134, 203, 0.15);
  color: #7986cb;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ---- Pricing Showcase ---- */
.bem-pricing-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}
.bem-pricing-main {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(57, 73, 171, 0.1);
  border: 2px solid #3949ab;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bem-price-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(57, 73, 171, 0.1);
  color: #3949ab;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bem-price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1a237e;
  line-height: 1;
}
.bem-price-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.bem-price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.5rem;
  text-align: left;
  width: 100%;
}
.bem-price-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #334155;
}
.bem-price-features span i {
  color: #3949ab;
  font-size: 0.85rem;
}
.bem-pricing-free {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.bem-free-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.bem-pricing-free h3 {
  font-size: 1.3rem;
  color: #1a237e;
  margin-bottom: 0.5rem;
}
.bem-pricing-free h4 {
  font-size: 1rem;
  color: #3949ab;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.bem-free-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bem-free-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: #334155;
  line-height: 1.5;
}
.bem-free-list li i {
  color: #43a047;
  margin-top: 3px;
}

/* ---- CTA Checks ---- */
.bem-cta-checks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bem-cta-checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

/* ---- WhatsApp Float ---- */
.bem-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.bem-wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  color: #fff;
}
.bem-wa-float i {
  font-size: 1.4rem;
}

/* ---- Responsive: Bulk Emails ---- */
@media (max-width: 1024px) {
  .bem-features-grid {
    grid-template-columns: 1fr;
  }
  .bem-feature-wide {
    grid-column: auto;
  }
  .bem-security-grid {
    grid-template-columns: 1fr;
  }
  .bem-pricing-showcase {
    grid-template-columns: 1fr;
  }
  .bem-analytics-preview {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .bem-hero {
    padding: 4rem 0 3rem;
    min-height: auto;
  }
  .bem-inbox-mockup {
    width: 280px;
  }
  .bem-float-chip {
    display: none;
  }
  .bem-deco {
    display: none;
  }
}

@media (max-width: 480px) {
  .bem-wa-float span {
    display: none;
  }
  .bem-wa-float {
    padding: 1rem;
    border-radius: 50%;
  }
}

/* ==========================================================================
   USSD PAGE (.ussd-*)
   ========================================================================== */

/* --- Header overrides (light hero) --- */
.page-template-page-ussd .site-header .nav-link,
.page-template-page-ussd .site-header .dropdown-toggle {
  color: var(--rt-gray-800) !important;
}
.page-template-page-ussd .site-header .logo-light {
  display: none;
}
.page-template-page-ussd .site-header .logo-dark {
  display: block !important;
}
.page-template-page-ussd .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.ussd-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #ede7f6 0%, #e8eaf6 40%, #f3e5f5 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.ussd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(124, 77, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(83, 109, 254, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.ussd-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.ussd-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.ussd-hero-content p {
  color: #4a5568;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ussd-highlight {
  background: linear-gradient(135deg, #7c4dff, #536dfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ussd-hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ussd-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #311b92;
  font-weight: 600;
  font-size: 0.9rem;
}
.ussd-badge i {
  color: #7c4dff;
}

/* --- Phone Mockup --- */
.ussd-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.ussd-phone {
  width: 280px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(74, 20, 140, 0.25),
    0 0 0 2px rgba(124, 77, 255, 0.15);
  position: relative;
}
.ussd-phone-notch {
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.ussd-phone-screen {
  background: #f5f5f5;
  border-radius: 24px;
  min-height: 380px;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ussd-dialer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ussd-dialer-display {
  flex: 1;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #311b92;
  font-family: 'SF Mono', 'Fira Code', monospace;
  letter-spacing: 1px;
}
.ussd-dialer-call {
  width: 44px;
  height: 44px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.ussd-menu-popup {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
.ussd-menu-title {
  font-weight: 700;
  color: #311b92;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #ede7f6;
}
.ussd-menu-item {
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: #333;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.ussd-menu-item:nth-child(2) {
  color: #7c4dff;
  font-weight: 600;
}
.ussd-menu-input {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
}
.ussd-menu-input input {
  flex: 1;
  border: 2px solid #d1c4e9;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #311b92;
  text-align: center;
  background: #f9f7ff;
}
.ussd-send-btn {
  background: #7c4dff;
  color: #fff;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* Float chips */
.ussd-float-chip {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #311b92;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ussd-float-chip i {
  color: #7c4dff;
}
.ussd-fc-1 {
  top: 10%;
  left: -30px;
}
.ussd-fc-2 {
  bottom: 15%;
  right: -20px;
}

/* Decorative SVGs */
.ussd-deco {
  position: absolute;
  pointer-events: none;
  animation: ussdFloat 6s ease-in-out infinite;
}
.ussd-deco-hash {
  width: 80px;
  top: 12%;
  left: 5%;
}
.ussd-deco-star {
  width: 60px;
  bottom: 10%;
  right: 8%;
  animation-delay: -2s;
}
.ussd-deco-signal {
  width: 70px;
  top: 60%;
  left: 2%;
  animation-delay: -4s;
}
@keyframes ussdFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* --- Clients --- */
.ussd-clients {
  padding: 3rem 0;
  background: #faf9fe;
  border-top: 1px solid rgba(124, 77, 255, 0.08);
}
.ussd-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.ussd-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ussd-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.ussd-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Why USSD --- */
.ussd-why {
  padding: 5rem 0;
  background: #fff;
}
.ussd-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ussd-why-card {
  background: #fafafe;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(124, 77, 255, 0.08);
  transition: all 0.3s;
}
.ussd-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 77, 255, 0.12);
  border-color: rgba(124, 77, 255, 0.2);
}
.ussd-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.ussd-why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.ussd-why-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Enterprise Tabs --- */
.ussd-enterprise {
  padding: 5rem 0;
  background: #faf9fe;
}
.ussd-ent-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.ussd-ent-tab {
  background: transparent;
  border: 2px solid #d1c4e9;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #5e35b1;
  cursor: pointer;
  transition: all 0.3s;
}
.ussd-ent-tab:hover {
  background: #ede7f6;
}
.ussd-ent-tab.active {
  background: linear-gradient(135deg, #7c4dff, #536dfe);
  color: #fff;
  border-color: transparent;
}
.ussd-ent-panel {
  display: none;
}
.ussd-ent-panel.active {
  display: block;
}
.ussd-ent-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.ussd-code-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4a148c, #7c4dff);
  color: #fff;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.75rem 2rem;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
.ussd-ent-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.ussd-ent-info p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.ussd-ent-checks {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.ussd-ent-checks li {
  padding: 0.5rem 0;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ussd-ent-checks i {
  color: #7c4dff;
}

/* Mini phone in enterprise */
.ussd-mini-phone {
  width: 220px;
  background: #1a1a2e;
  border-radius: 28px;
  padding: 10px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(74, 20, 140, 0.2);
}
.ussd-mini-notch {
  width: 60px;
  height: 18px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
}
.ussd-mini-screen {
  background: #f5f5f5;
  border-radius: 18px;
  padding: 1.5rem 1rem;
  min-height: 200px;
}
.ussd-mini-header {
  font-weight: 700;
  color: #311b92;
  font-size: 0.85rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #ede7f6;
}
.ussd-mini-menu div {
  padding: 0.35rem 0;
  font-size: 0.8rem;
  color: #333;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* --- Use Cases --- */
.ussd-cases {
  padding: 5rem 0;
  background: #fff;
}
.ussd-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.ussd-case-card {
  background: #fafafe;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(124, 77, 255, 0.08);
  transition: all 0.3s;
}
.ussd-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 77, 255, 0.1);
}
.ussd-case-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ede7f6, #e8eaf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #7c4dff;
  margin-bottom: 1.25rem;
}
.ussd-case-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.ussd-case-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ussd-case-demo {
  background: linear-gradient(135deg, #ede7f6, #e8eaf6);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  display: inline-block;
}
.ussd-case-demo span {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.78rem;
  color: #5e35b1;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --- Pricing (Dark) --- */
.ussd-pricing {
  padding: 5rem 0;
  background: linear-gradient(160deg, #1a1a2e 0%, #311b92 50%, #4a148c 100%);
}
.ussd-price-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.ussd-price-tab {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.7rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s;
}
.ussd-price-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ussd-price-tab.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.ussd-price-panel {
  display: none;
}
.ussd-price-panel.active {
  display: block;
}

/* Shared + Session table */
.ussd-table-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.ussd-table-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.ussd-table {
  width: 100%;
  border-collapse: collapse;
}
.ussd-table thead th {
  text-align: left;
  padding: 1rem 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
.ussd-table tbody td {
  padding: 1rem 1.25rem;
  color: #fff;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ussd-table tbody tr:last-child td {
  border-bottom: none;
}
.ussd-table code {
  background: rgba(124, 77, 255, 0.2);
  color: #b388ff;
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.ussd-free-tag {
  background: linear-gradient(135deg, #00c853, #69f0ae);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Network badges */
.ussd-network-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.ussd-saf {
  background: rgba(76, 175, 80, 0.15);
  color: #69f0ae;
}
.ussd-air {
  background: rgba(244, 67, 54, 0.15);
  color: #ef9a9a;
}
.ussd-tlk {
  background: rgba(33, 150, 243, 0.15);
  color: #90caf9;
}

/* Dedicated pricing grid */
.ussd-ded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ussd-ded-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
}
.ussd-ded-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}
.ussd-ded-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.ussd-ded-header i {
  font-size: 1.2rem;
}
.ussd-ded-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.ussd-saf-bg {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.3),
    rgba(76, 175, 80, 0.1)
  );
}
.ussd-air-bg {
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.3),
    rgba(244, 67, 54, 0.1)
  );
}
.ussd-tlk-bg {
  background: linear-gradient(
    135deg,
    rgba(33, 150, 243, 0.3),
    rgba(33, 150, 243, 0.1)
  );
}
.ussd-ded-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ussd-ded-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
}
.ussd-ded-list li:last-child {
  border-bottom: none;
}
.ussd-ded-list li span {
  color: rgba(255, 255, 255, 0.6);
}
.ussd-ded-list li strong {
  color: #fff;
  text-align: right;
}
.ussd-ded-list li small {
  color: rgba(255, 255, 255, 0.4);
  display: block;
  font-size: 0.75rem;
}
.ussd-ded-highlight {
  background: rgba(124, 77, 255, 0.1);
}

/* --- CTA --- */
.ussd-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #ede7f6 0%, #e8eaf6 50%, #f3e5f5 100%);
}
.ussd-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ussd-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.ussd-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
}
.ussd-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 77, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.08);
}
.ussd-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #311b92;
  margin-bottom: 1.5rem;
}
.ussd-cta-form input,
.ussd-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.ussd-cta-form input:focus,
.ussd-cta-form select:focus {
  border-color: #7c4dff;
  outline: none;
}
.ussd-telco-checks {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.ussd-telco-checks label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

/* WhatsApp Float */
.ussd-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.ussd-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ussd-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ussd-hero-content h1 {
    font-size: 2.25rem;
  }
  .ussd-hero-badges {
    justify-content: center;
  }
  .ussd-hero-mockup {
    margin-top: 2rem;
  }
  .ussd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ussd-ent-grid {
    grid-template-columns: 1fr;
  }
  .ussd-ent-visual {
    order: -1;
  }
  .ussd-ded-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .ussd-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ussd-hero {
    padding: 100px 0 60px;
  }
  .ussd-hero-content h1 {
    font-size: 1.85rem;
  }
  .ussd-why-grid {
    grid-template-columns: 1fr;
  }
  .ussd-cases-grid {
    grid-template-columns: 1fr;
  }
  .ussd-ent-tabs,
  .ussd-price-tabs {
    flex-wrap: wrap;
  }
  .ussd-float-chip {
    display: none;
  }
  .ussd-table-card {
    padding: 1.25rem;
  }
  .ussd-table thead th,
  .ussd-table tbody td {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
  .ussd-cta-text h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .ussd-hero-content h1 {
    font-size: 1.5rem;
  }
  .ussd-phone {
    width: 240px;
  }
  .ussd-deco {
    display: none;
  }
  .ussd-clients-row {
    gap: 1.5rem;
  }
  .ussd-clients-row img {
    height: 28px;
  }
}

/* ==========================================================================
   SHORT CODES PAGE (.sc-*)
   ========================================================================== */

/* --- Header overrides (light hero) --- */
.page-template-page-shortcodes .site-header .nav-link,
.page-template-page-shortcodes .site-header .dropdown-toggle {
  color: var(--rt-gray-800) !important;
}
.page-template-page-shortcodes .site-header .logo-light {
  display: none;
}
.page-template-page-shortcodes .site-header .logo-dark {
  display: block !important;
}
.page-template-page-shortcodes .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.sc-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #e3f2fd 0%, #e8eaf6 40%, #e1f5fe 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(21, 101, 192, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(66, 165, 245, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.sc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.sc-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.sc-hero-content p {
  color: #4a5568;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sc-highlight {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sc-hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.sc-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0d47a1;
  font-weight: 600;
  font-size: 0.9rem;
}
.sc-badge i {
  color: #1565c0;
}

/* --- Phone Mockup --- */
.sc-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.sc-phone {
  width: 280px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(13, 71, 161, 0.25),
    0 0 0 2px rgba(21, 101, 192, 0.15);
  position: relative;
}
.sc-phone-notch {
  width: 100px;
  height: 24px;
  background: #1a1a2e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.sc-phone-screen {
  background: #f5f5f5;
  border-radius: 24px;
  min-height: 400px;
  overflow: hidden;
}
.sc-sms-header {
  background: #1565c0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}
.sc-sms-avatar {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-sms-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}
.sc-sms-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}
.sc-sms-thread {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sc-msg {
  max-width: 85%;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  font-size: 0.8rem;
  line-height: 1.45;
}
.sc-msg small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.65rem;
  opacity: 0.5;
}
.sc-msg-in {
  background: #fff;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.sc-msg-out {
  background: #1565c0;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sc-msg-out small {
  color: rgba(255, 255, 255, 0.5);
}

/* Float chips */
.sc-float-chip {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d47a1;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sc-float-chip i {
  color: #1565c0;
}
.sc-fc-1 {
  top: 8%;
  left: -35px;
}
.sc-fc-2 {
  bottom: 12%;
  right: -25px;
}

/* Decorative SVGs */
.sc-deco {
  position: absolute;
  pointer-events: none;
  animation: scFloat 6s ease-in-out infinite;
}
.sc-deco-hash {
  width: 80px;
  top: 10%;
  left: 4%;
}
.sc-deco-msg {
  width: 70px;
  bottom: 12%;
  right: 6%;
  animation-delay: -2s;
}
.sc-deco-arrow {
  width: 60px;
  top: 55%;
  left: 1%;
  animation-delay: -4s;
}
@keyframes scFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* --- Clients --- */
.sc-clients {
  padding: 3rem 0;
  background: #f8faff;
  border-top: 1px solid rgba(21, 101, 192, 0.08);
}
.sc-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.sc-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.sc-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.sc-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Why Section --- */
.sc-why {
  padding: 5rem 0;
  background: #fff;
}
.sc-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.sc-why-info p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.sc-keyword-demo {
  margin-top: 1.5rem;
}
.sc-keyword-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #e3f2fd, #e8eaf6);
  padding: 1.25rem 2rem;
  border-radius: 16px;
  border: 2px solid rgba(21, 101, 192, 0.12);
}
.sc-kw {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1565c0;
  background: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sc-arrow {
  font-size: 1.5rem;
  color: #90a4ae;
}
.sc-code {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0d47a1;
}
.sc-keyword-sub {
  margin-top: 0.75rem;
  color: #718096;
  font-size: 0.9rem;
}

/* Stats bars */
.sc-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: #fafcff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(21, 101, 192, 0.08);
}
.sc-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sc-stat-item small {
  color: #718096;
  font-size: 0.8rem;
  font-weight: 600;
}
.sc-stat-bar {
  height: 36px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.sc-bar-2 {
  background: linear-gradient(135deg, #0d47a1, #1565c0);
}
.sc-bar-3 {
  background: linear-gradient(135deg, #42a5f5, #64b5f6);
}
.sc-bar-4 {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
}

/* --- Types (Tabbed) --- */
.sc-types {
  padding: 5rem 0;
  background: #f8faff;
}
.sc-types-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.sc-type-tab {
  background: transparent;
  border: 2px solid #bbdefb;
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1565c0;
  cursor: pointer;
  transition: all 0.3s;
}
.sc-type-tab:hover {
  background: #e3f2fd;
}
.sc-type-tab.active {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  color: #fff;
  border-color: transparent;
}
.sc-type-panel {
  display: none;
}
.sc-type-panel.active {
  display: block;
}
.sc-type-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.sc-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.sc-type-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.sc-type-info p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.sc-type-best {
  margin-top: 1.5rem;
  color: #333;
}
.sc-type-best strong {
  font-size: 0.9rem;
}
.sc-best-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.sc-best-tags span {
  background: #e3f2fd;
  color: #1565c0;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

/* Mini convo in type visual */
.sc-mini-convo {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(21, 101, 192, 0.1);
  box-shadow: 0 8px 30px rgba(21, 101, 192, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 320px;
  margin: 0 auto;
}
.sc-mini-msg {
  padding: 0.65rem 1rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.sc-mini-out {
  background: #1565c0;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 600;
}
.sc-mini-in {
  background: #f5f5f5;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sc-mini-cost {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4caf50;
  padding-top: 0.5rem;
  border-top: 1px solid #eee;
  margin-top: 0.5rem;
}
.sc-mini-cost i {
  margin-right: 0.3rem;
}

/* --- Benefits (Dark) --- */
.sc-benefits {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0d2137 0%, #0d47a1 50%, #1565c0 100%);
}
.sc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sc-benefit-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.sc-benefit-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.sc-benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #90caf9;
  margin: 0 auto 1.25rem;
}
.sc-benefit-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.sc-benefit-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Use Cases --- */
.sc-cases {
  padding: 5rem 0;
  background: #fff;
}
.sc-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.sc-case-card {
  background: #fafcff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(21, 101, 192, 0.08);
  transition: all 0.3s;
}
.sc-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.1);
}
.sc-case-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e3f2fd, #e8eaf6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #1565c0;
  margin-bottom: 1.25rem;
}
.sc-case-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.sc-case-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sc-case-demo {
  background: linear-gradient(135deg, #e3f2fd, #e8eaf6);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: #0d47a1;
  font-weight: 600;
  display: inline-block;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* --- Steps Timeline --- */
.sc-steps {
  padding: 5rem 0;
  background: #f8faff;
}
.sc-steps-timeline {
  position: relative;
  max-width: 700px;
  margin: 3rem auto 0;
  padding-left: 60px;
}
.sc-steps-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #1565c0, #42a5f5, #90caf9);
  border-radius: 2px;
}
.sc-step {
  position: relative;
  padding-bottom: 2.5rem;
}
.sc-step:last-child {
  padding-bottom: 0;
}
.sc-step-num {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
  z-index: 2;
}
.sc-step-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.sc-step-content p {
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.6;
}
.sc-step-keywords {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.sc-step-keywords span {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #1565c0;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 8px;
}

/* --- Pricing --- */
.sc-pricing {
  padding: 5rem 0;
  background: #fff;
}
.sc-price-card {
  max-width: 600px;
  margin: 2rem auto 0;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(21, 101, 192, 0.12);
  box-shadow: 0 12px 40px rgba(21, 101, 192, 0.08);
}
.sc-price-header {
  background: linear-gradient(135deg, #1565c0, #42a5f5);
  padding: 2rem;
  text-align: center;
}
.sc-price-label {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.sc-price-networks {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sc-price-networks span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}
.sc-price-body {
  background: #fff;
  padding: 0;
}
.sc-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #f0f0f0;
}
.sc-price-item:last-child {
  border-bottom: none;
}
.sc-price-item-label {
  color: #64748b;
  font-size: 0.95rem;
}
.sc-price-item-label small {
  display: block;
  font-size: 0.78rem;
  color: #a0aec0;
}
.sc-price-item-value {
  font-size: 1.1rem;
  color: #1a1a2e;
}
.sc-price-item-value strong {
  font-weight: 800;
}
.sc-price-main {
  background: #f8faff;
}
.sc-free-tag {
  background: linear-gradient(135deg, #00c853, #69f0ae);
  color: #1a1a2e;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- CTA --- */
.sc-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #e3f2fd 0%, #e8eaf6 50%, #e1f5fe 100%);
}
.sc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sc-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.sc-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
}
.sc-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(21, 101, 192, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(21, 101, 192, 0.08);
}
.sc-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 1.5rem;
}
.sc-cta-form input,
.sc-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.sc-cta-form input:focus,
.sc-cta-form select:focus {
  border-color: #1565c0;
  outline: none;
}
.sc-telco-checks {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.sc-telco-checks label {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

/* WhatsApp Float */
.sc-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.sc-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sc-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sc-hero-content h1 {
    font-size: 2.25rem;
  }
  .sc-hero-badges {
    justify-content: center;
  }
  .sc-hero-mockup {
    margin-top: 2rem;
  }
  .sc-why-grid {
    grid-template-columns: 1fr;
  }
  .sc-type-grid {
    grid-template-columns: 1fr;
  }
  .sc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .sc-hero {
    padding: 100px 0 60px;
  }
  .sc-hero-content h1 {
    font-size: 1.85rem;
  }
  .sc-benefits-grid {
    grid-template-columns: 1fr;
  }
  .sc-cases-grid {
    grid-template-columns: 1fr;
  }
  .sc-types-tabs {
    flex-wrap: wrap;
  }
  .sc-float-chip {
    display: none;
  }
  .sc-keyword-box {
    flex-direction: column;
    text-align: center;
  }
  .sc-cta-text h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .sc-hero-content h1 {
    font-size: 1.5rem;
  }
  .sc-phone {
    width: 240px;
  }
  .sc-deco {
    display: none;
  }
  .sc-clients-row {
    gap: 1.5rem;
  }
  .sc-clients-row img {
    height: 28px;
  }
}

/* ==========================================================================
   BULK AIRTIME PAGE (.bat-*)
   ========================================================================== */

/* --- Header overrides (light hero) --- */
.page-template-page-bulk-airtime .site-header .nav-link,
.page-template-page-bulk-airtime .site-header .dropdown-toggle {
  color: var(--rt-gray-800) !important;
}
.page-template-page-bulk-airtime .site-header .logo-light {
  display: none;
}
.page-template-page-bulk-airtime .site-header .logo-dark {
  display: block !important;
}
.page-template-page-bulk-airtime .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.bat-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #e0f2f1 0%, #e0f7fa 40%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.bat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 25% 75%,
      rgba(0, 137, 123, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(0, 150, 136, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.bat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
.bat-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.bat-hero-content p {
  color: #4a5568;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.bat-highlight {
  background: linear-gradient(135deg, #00897b, #26a69a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Dashboard Mockup --- */
.bat-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.bat-dash {
  width: 360px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(0, 77, 64, 0.15),
    0 0 0 1px rgba(0, 137, 123, 0.08);
  overflow: hidden;
}
.bat-dash-header {
  background: linear-gradient(135deg, #00897b, #26a69a);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bat-dash-dots {
  display: flex;
  gap: 5px;
}
.bat-dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.bat-dash-dots span:first-child {
  background: #ef5350;
}
.bat-dash-dots span:nth-child(2) {
  background: #ffca28;
}
.bat-dash-dots span:nth-child(3) {
  background: #66bb6a;
}
.bat-dash-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-left: auto;
  margin-right: auto;
}
.bat-dash-body {
  padding: 1.5rem;
}
.bat-dash-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.bat-dash-stat {
  background: #f0faf9;
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid rgba(0, 137, 123, 0.1);
}
.bat-dash-stat small {
  display: block;
  color: #718096;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}
.bat-dash-stat strong {
  color: #00695c;
  font-size: 1rem;
  font-weight: 800;
}
.bat-dash-recipients {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bat-recip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fafffe;
  border: 1px solid #e0f2f1;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
}
.bat-recip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #fff;
}
.bat-saf {
  background: #4caf50;
}
.bat-air {
  background: #e53935;
}
.bat-tlk {
  background: #1e88e5;
}
.bat-recip-info {
  flex: 1;
}
.bat-recip-info span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.bat-recip-info small {
  color: #00897b;
  font-weight: 700;
  font-size: 0.75rem;
}
.bat-recip-status {
  color: #4caf50;
  font-size: 1rem;
}
.bat-pending {
  color: #ff9800;
}

/* Float chips */
.bat-float-chip {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #004d40;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.bat-float-chip i {
  color: #00897b;
}
.bat-fc-1 {
  top: 5%;
  left: -30px;
}
.bat-fc-2 {
  bottom: 10%;
  right: -20px;
}

/* Decorative SVGs */
.bat-deco {
  position: absolute;
  pointer-events: none;
  animation: batFloat 6s ease-in-out infinite;
}
.bat-deco-signal {
  width: 80px;
  top: 10%;
  left: 4%;
}
.bat-deco-phone {
  width: 50px;
  bottom: 8%;
  right: 7%;
  animation-delay: -2s;
}
.bat-deco-coin {
  width: 65px;
  top: 55%;
  left: 1%;
  animation-delay: -4s;
}
@keyframes batFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* --- Clients --- */
.bat-clients {
  padding: 3rem 0;
  background: #f5fcfb;
  border-top: 1px solid rgba(0, 137, 123, 0.08);
}
.bat-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.bat-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.bat-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.bat-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Built for Scale --- */
.bat-scale {
  padding: 5rem 0;
  background: #fff;
}
.bat-scale-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.bat-scale-info h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.bat-scale-info p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.bat-checks {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.bat-checks li {
  padding: 0.6rem 0;
  color: #333;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.bat-checks i {
  color: #00897b;
  margin-top: 0.2rem;
}

/* Flow visual */
.bat-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.bat-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.bat-flow-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #00897b;
  transition: all 0.3s;
}
.bat-flow-step:hover .bat-flow-icon {
  background: linear-gradient(135deg, #00897b, #26a69a);
  color: #fff;
  transform: translateY(-4px);
}
.bat-flow-step span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
}
.bat-flow-arrow {
  color: #b2dfdb;
  font-size: 1.2rem;
}
.bat-network-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.bat-pill {
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.bat-pill-saf {
  background: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
}
.bat-pill-air {
  background: rgba(229, 57, 53, 0.1);
  color: #c62828;
}
.bat-pill-tlk {
  background: rgba(30, 136, 229, 0.1);
  color: #1565c0;
}

/* --- Why Section --- */
.bat-why {
  padding: 5rem 0;
  background: #f5fcfb;
}
.bat-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.bat-why-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 137, 123, 0.08);
  transition: all 0.3s;
}
.bat-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 137, 123, 0.12);
  border-color: rgba(0, 137, 123, 0.2);
}
.bat-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
}
.bat-why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.bat-why-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Use Cases (Dark) --- */
.bat-cases {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0a2620 0%, #004d40 50%, #00695c 100%);
}
.bat-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bat-case-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.bat-case-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.bat-case-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #80cbc4;
  margin-bottom: 1.25rem;
}
.bat-case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.bat-case-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Pricing --- */
.bat-pricing {
  padding: 5rem 0;
  background: #fff;
}
.bat-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bat-plan-card {
  background: #f5fcfb;
  border: 2px solid rgba(0, 137, 123, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.bat-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 137, 123, 0.12);
}
.bat-plan-featured {
  border-color: #00897b;
  background: linear-gradient(180deg, #e0f2f1 0%, #fff 100%);
}
.bat-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00897b, #26a69a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bat-plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.bat-plan-range {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 137, 123, 0.1);
}
.bat-plan-rate {
  font-size: 3rem;
  font-weight: 800;
  color: #00695c;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bat-plan-rate span {
  font-size: 1.25rem;
  font-weight: 600;
}
.bat-plan-label {
  font-size: 0.8rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CTA --- */
.bat-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #e0f2f1 0%, #e0f7fa 50%, #f1f8e9 100%);
}
.bat-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.bat-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.bat-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
}
.bat-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 137, 123, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 137, 123, 0.08);
}
.bat-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #004d40;
  margin-bottom: 1.5rem;
}
.bat-cta-form input,
.bat-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.bat-cta-form input:focus,
.bat-cta-form select:focus {
  border-color: #00897b;
  outline: none;
}

/* WhatsApp Float */
.bat-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.bat-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .bat-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bat-hero-content h1 {
    font-size: 2.25rem;
  }
  .bat-hero-mockup {
    margin-top: 2rem;
  }
  .bat-scale-grid {
    grid-template-columns: 1fr;
  }
  .bat-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bat-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bat-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bat-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .bat-hero {
    padding: 100px 0 60px;
  }
  .bat-hero-content h1 {
    font-size: 1.85rem;
  }
  .bat-why-grid {
    grid-template-columns: 1fr;
  }
  .bat-cases-grid {
    grid-template-columns: 1fr;
  }
  .bat-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .bat-float-chip {
    display: none;
  }
  .bat-flow {
    flex-wrap: wrap;
  }
  .bat-cta-text h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .bat-hero-content h1 {
    font-size: 1.5rem;
  }
  .bat-dash {
    width: 300px;
  }
  .bat-deco {
    display: none;
  }
  .bat-clients-row {
    gap: 1.5rem;
  }
  .bat-clients-row img {
    height: 28px;
  }
}

/* ==========================================================================
   EMALICHAT PAGE (.ec-*)
   ========================================================================== */

/* --- Header overrides (light hero) --- */
.page-template-page-emailchat .site-header .nav-link,
.page-template-page-emailchat .site-header .dropdown-toggle {
  color: var(--rt-gray-800) !important;
}
.page-template-page-emailchat .site-header .logo-light {
  display: none;
}
.page-template-page-emailchat .site-header .logo-dark {
  display: block !important;
}
.page-template-page-emailchat .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.ec-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #f3e5f5 0%,
    #ede7f6 35%,
    #e8eaf6 70%,
    #f5f5f5 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.ec-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(124, 77, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(224, 64, 251, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.ec-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}
.ec-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.ec-hero-content p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ec-highlight {
  background: linear-gradient(135deg, #7c4dff, #e040fb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ec-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.ec-badge {
  background: rgba(124, 77, 255, 0.08);
  color: #5e35b1;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.ec-badge i {
  color: #7c4dff;
  font-size: 0.75rem;
}

/* --- Inbox Mockup --- */
.ec-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.ec-inbox {
  width: 440px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 30px 80px rgba(124, 77, 255, 0.15),
    0 0 0 1px rgba(124, 77, 255, 0.06);
  overflow: hidden;
}
.ec-inbox-header {
  background: linear-gradient(135deg, #7c4dff, #651fff);
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ec-inbox-dots {
  display: flex;
  gap: 5px;
}
.ec-inbox-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.ec-inbox-dots span:first-child {
  background: #ef5350;
}
.ec-inbox-dots span:nth-child(2) {
  background: #ffca28;
}
.ec-inbox-dots span:nth-child(3) {
  background: #66bb6a;
}
.ec-inbox-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ec-inbox-actions {
  margin-left: auto;
}
.ec-notif {
  background: #e040fb;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ec-inbox-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 260px;
}

/* Sidebar */
.ec-inbox-sidebar {
  background: #f8f6ff;
  border-right: 1px solid #ede7f6;
  padding: 0.5rem 0;
}
.ec-channel {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}
.ec-channel:hover {
  background: #ede7f6;
}
.ec-channel-active {
  background: #ede7f6;
  border-left-color: #7c4dff;
}
.ec-channel > i {
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ec-channel-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ec-channel-info span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ec-channel-info small {
  display: block;
  font-size: 0.55rem;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ec-channel-badge {
  background: #7c4dff;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chat panel */
.ec-inbox-chat {
  display: flex;
  flex-direction: column;
}
.ec-chat-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.ec-chat-top strong {
  font-size: 0.75rem;
  color: #333;
}
.ec-chat-tag {
  background: rgba(124, 77, 255, 0.1);
  color: #7c4dff;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  margin-left: auto;
}
.ec-chat-msgs {
  flex: 1;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  overflow: hidden;
}
.ec-msg {
  max-width: 85%;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
}
.ec-msg p {
  font-size: 0.6rem;
  line-height: 1.4;
  margin: 0;
}
.ec-msg small {
  font-size: 0.45rem;
  color: #aaa;
}
.ec-msg-in {
  background: #f0f0f0;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.ec-msg-out {
  background: linear-gradient(135deg, #7c4dff, #9c7cff);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.ec-msg-out small {
  color: rgba(255, 255, 255, 0.6);
}
.ec-chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #f0f0f0;
}
.ec-chat-input span {
  font-size: 0.65rem;
  color: #bbb;
}
.ec-chat-input i {
  color: #7c4dff;
  font-size: 0.8rem;
}

/* Float chips */
.ec-float-chip {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a148c;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ec-float-chip i {
  color: #7c4dff;
}
.ec-fc-1 {
  top: 5%;
  left: -20px;
}
.ec-fc-2 {
  bottom: 8%;
  right: -15px;
}

/* Deco SVGs */
.ec-deco {
  position: absolute;
  pointer-events: none;
  animation: ecFloat 6s ease-in-out infinite;
}
.ec-deco-chat {
  width: 70px;
  top: 12%;
  left: 3%;
}
.ec-deco-at {
  width: 55px;
  bottom: 10%;
  right: 5%;
  animation-delay: -2s;
}
.ec-deco-bell {
  width: 50px;
  top: 55%;
  left: 1%;
  animation-delay: -4s;
}
@keyframes ecFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

/* --- Clients --- */
.ec-clients {
  padding: 3rem 0;
  background: #faf8ff;
  border-top: 1px solid rgba(124, 77, 255, 0.06);
}
.ec-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.ec-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ec-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.ec-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Features --- */
.ec-features {
  padding: 5rem 0;
  background: #fff;
}
.ec-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ec-feat-card {
  background: #faf8ff;
  border: 1px solid rgba(124, 77, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.ec-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 77, 255, 0.1);
  border-color: rgba(124, 77, 255, 0.15);
}
.ec-feat-card-wide {
  grid-column: span 3;
  max-width: 420px;
  margin: 0 auto;
}
.ec-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.ec-feat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.ec-feat-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Why Section (Dark) --- */
.ec-why {
  padding: 5rem 0;
  background: linear-gradient(160deg, #1a0a2e 0%, #2d1654 50%, #4a148c 100%);
}
.ec-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

/* Dashboard mini mockup */
.ec-dash-mini {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
}
.ec-dash-mini-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.2);
}
.ec-dash-mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ec-dash-mini-body {
  padding: 1.25rem;
}
.ec-dash-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ec-mini-metric {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.ec-mini-metric-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: #e040fb;
  margin-bottom: 0.2rem;
}
.ec-mini-metric-lbl {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ec-mini-chart {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 1rem;
}
.ec-mini-bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
}
.ec-bar {
  flex: 1;
  background: linear-gradient(180deg, #e040fb, #7c4dff);
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: height 0.3s;
  min-height: 10px;
}
.ec-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}

/* Benefits */
.ec-why-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ec-benefit {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  transition: all 0.3s;
}
.ec-benefit:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}
.ec-benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(224, 64, 251, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #e040fb;
  flex-shrink: 0;
}
.ec-benefit h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.ec-benefit p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* --- Teams --- */
.ec-teams {
  padding: 5rem 0;
  background: #faf8ff;
}
.ec-teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ec-team-card {
  background: #fff;
  border: 1px solid rgba(124, 77, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.ec-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(124, 77, 255, 0.1);
  border-color: rgba(124, 77, 255, 0.15);
}
.ec-team-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ede7f6, #d1c4e9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #7c4dff;
  margin: 0 auto 1.25rem;
}
.ec-team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.ec-team-card p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- CTA --- */
.ec-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #f3e5f5 0%, #ede7f6 50%, #e8eaf6 100%);
}
.ec-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ec-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.ec-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ec-cta-channels {
  display: flex;
  gap: 1rem;
}
.ec-cta-channels span {
  width: 48px;
  height: 48px;
  background: rgba(124, 77, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7c4dff;
  transition: all 0.3s;
}
.ec-cta-channels span:hover {
  background: #7c4dff;
  color: #fff;
  transform: translateY(-3px);
}
.ec-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 77, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(124, 77, 255, 0.08);
}
.ec-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #4a148c;
  margin-bottom: 1.5rem;
}
.ec-cta-form input,
.ec-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.ec-cta-form input:focus,
.ec-cta-form select:focus {
  border-color: #7c4dff;
  outline: none;
}

/* WhatsApp Float */
.ec-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.ec-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ec-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ec-hero-content h1 {
    font-size: 2.25rem;
  }
  .ec-hero-badges {
    justify-content: center;
  }
  .ec-hero-mockup {
    margin-top: 2rem;
  }
  .ec-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-feat-card-wide {
    grid-column: span 2;
  }
  .ec-why-grid {
    grid-template-columns: 1fr;
  }
  .ec-teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .ec-hero {
    padding: 100px 0 60px;
  }
  .ec-hero-content h1 {
    font-size: 1.85rem;
  }
  .ec-inbox {
    width: 360px;
  }
  .ec-inbox-body {
    grid-template-columns: 1fr;
  }
  .ec-inbox-sidebar {
    display: none;
  }
  .ec-features-grid {
    grid-template-columns: 1fr;
  }
  .ec-feat-card-wide {
    grid-column: span 1;
    max-width: 100%;
  }
  .ec-teams-grid {
    grid-template-columns: 1fr;
  }
  .ec-float-chip {
    display: none;
  }
  .ec-cta-text h2 {
    font-size: 1.75rem;
  }
  .ec-dash-mini-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .ec-hero-content h1 {
    font-size: 1.5rem;
  }
  .ec-inbox {
    width: 300px;
  }
  .ec-deco {
    display: none;
  }
  .ec-clients-row {
    gap: 1.5rem;
  }
  .ec-clients-row img {
    height: 28px;
  }
  .ec-cta-channels span {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* ==========================================================================
   VOICE IVR PAGE (.vr-*)
   ========================================================================== */

/* --- Header overrides (light hero) --- */
.page-template-page-voice .site-header .nav-link,
.page-template-page-voice .site-header .dropdown-toggle {
  color: var(--rt-gray-800) !important;
}
.page-template-page-voice .site-header .logo-light {
  display: none;
}
.page-template-page-voice .site-header .logo-dark {
  display: block !important;
}
.page-template-page-voice .site-header .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.vr-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #fff3e0 0%,
    #fbe9e7 35%,
    #fce4ec 70%,
    #f5f5f5 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.vr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(230, 81, 0, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(255, 109, 0, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.vr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}
.vr-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1a1a2e;
  margin-bottom: 1.25rem;
}
.vr-hero-content p {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.vr-highlight {
  background: linear-gradient(135deg, #e65100, #ff6d00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vr-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.vr-badge {
  background: rgba(230, 81, 0, 0.08);
  color: #bf360c;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.vr-badge i {
  color: #e65100;
  font-size: 0.75rem;
}

/* --- Phone Mockup --- */
.vr-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.vr-phone {
  width: 280px;
  background: #1a1a2e;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(230, 81, 0, 0.15),
    0 0 0 2px rgba(255, 109, 0, 0.1);
  position: relative;
}
.vr-phone-notch {
  width: 100px;
  height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.vr-phone-screen {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border-radius: 26px;
  overflow: hidden;
  padding: 2.5rem 1.25rem 1.25rem;
  min-height: 400px;
  display: flex;
  flex-direction: column;
}
.vr-call-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.vr-call-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e65100, #ff6d00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6rem;
  font-size: 1.3rem;
  color: #fff;
}
.vr-call-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.vr-call-status {
  color: #66bb6a;
  font-size: 0.7rem;
  font-weight: 600;
}
.vr-call-status i {
  font-size: 0.4rem;
  vertical-align: middle;
  margin-right: 4px;
}
.vr-ivr-menu {
  flex: 1;
}
.vr-ivr-prompt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 109, 0, 0.1);
  border: 1px solid rgba(255, 109, 0, 0.2);
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
}
.vr-ivr-prompt i {
  color: #ff6d00;
  font-size: 0.8rem;
}
.vr-ivr-prompt span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.65rem;
  font-style: italic;
}
.vr-ivr-options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.vr-ivr-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}
.vr-ivr-opt-active {
  background: rgba(255, 109, 0, 0.15);
  border-color: rgba(255, 109, 0, 0.3);
  color: #fff;
}
.vr-opt-key {
  width: 24px;
  height: 24px;
  background: rgba(255, 109, 0, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #ff6d00;
}
.vr-ivr-opt-active .vr-opt-key {
  background: #ff6d00;
  color: #fff;
}
.vr-call-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.vr-call-controls span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.vr-end-call {
  background: #e53935 !important;
  color: #fff !important;
}

/* Float chips */
.vr-float-chip {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bf360c;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vr-float-chip i {
  color: #e65100;
}
.vr-fc-1 {
  top: 8%;
  left: -20px;
}
.vr-fc-2 {
  bottom: 12%;
  right: -15px;
}

/* Deco SVGs */
.vr-deco {
  position: absolute;
  pointer-events: none;
  animation: vrFloat 6s ease-in-out infinite;
}
.vr-deco-wave {
  width: 100px;
  top: 15%;
  left: 2%;
}
.vr-deco-phone {
  width: 55px;
  bottom: 8%;
  right: 6%;
  animation-delay: -2s;
}
.vr-deco-signal {
  width: 50px;
  top: 60%;
  left: 1%;
  animation-delay: -4s;
}
@keyframes vrFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

/* --- Clients --- */
.vr-clients {
  padding: 3rem 0;
  background: #fffaf5;
  border-top: 1px solid rgba(230, 81, 0, 0.06);
}
.vr-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.vr-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.vr-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.vr-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Features --- */
.vr-features {
  padding: 5rem 0;
  background: #fff;
}
.vr-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vr-feat-card {
  background: #fffaf5;
  border: 1px solid rgba(230, 81, 0, 0.06);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.vr-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(230, 81, 0, 0.1);
  border-color: rgba(230, 81, 0, 0.15);
}
.vr-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.vr-feat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.vr-feat-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- How It Works (Dark) --- */
.vr-how {
  padding: 5rem 0;
  background: linear-gradient(160deg, #1a0a00 0%, #3e1500 50%, #bf360c 100%);
}
.vr-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.vr-flow-step {
  flex: 0 0 200px;
  text-align: center;
  position: relative;
  padding: 0 1rem;
}
.vr-flow-num {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: #ff6d00;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.vr-flow-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 109, 0, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffcc80;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}
.vr-flow-step:hover .vr-flow-icon {
  background: rgba(255, 109, 0, 0.2);
  border-color: #ff6d00;
  transform: translateY(-4px);
}
.vr-flow-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.vr-flow-step p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.vr-flow-connector {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  color: rgba(255, 109, 0, 0.4);
  font-size: 1.2rem;
}

/* --- Pain Points --- */
.vr-pain {
  padding: 5rem 0;
  background: #fff;
}
.vr-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vr-pain-card {
  background: #fffaf5;
  border: 1px solid rgba(230, 81, 0, 0.06);
  border-left: 4px solid #e65100;
  border-radius: 0 20px 20px 0;
  padding: 2rem;
  transition: all 0.3s;
}
.vr-pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(230, 81, 0, 0.08);
}
.vr-pain-icon {
  width: 48px;
  height: 48px;
  background: rgba(230, 81, 0, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e65100;
  margin-bottom: 1rem;
}
.vr-pain-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.vr-pain-card p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.vr-pain-stat strong {
  display: block;
  font-size: 0.85rem;
  color: #bf360c;
  margin-top: 0.5rem;
}
.vr-pain-bar {
  width: 100%;
  height: 8px;
  background: #fbe9e7;
  border-radius: 4px;
  overflow: hidden;
}
.vr-pain-fill {
  height: 100%;
  background: linear-gradient(90deg, #e65100, #ff6d00);
  border-radius: 4px;
}
.vr-pain-bar-good {
  background: #e8f5e9;
}
.vr-pain-fill-good {
  height: 100%;
  background: linear-gradient(90deg, #2e7d32, #66bb6a);
  border-radius: 4px;
}

/* --- Smarter Way --- */
.vr-smart {
  padding: 5rem 0;
  background: #fffaf5;
}
.vr-smart-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.vr-smart-info h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.vr-smart-info p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.vr-checks {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.vr-checks li {
  padding: 0.6rem 0;
  color: #333;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.vr-checks i {
  color: #e65100;
  margin-top: 0.2rem;
}
.vr-smart-visual {
  display: flex;
  justify-content: center;
}
.vr-smart-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vr-smart-card-row {
  display: flex;
  gap: 1rem;
}
.vr-smart-stat-card {
  background: #fff;
  border: 2px solid rgba(230, 81, 0, 0.08);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  width: 140px;
  transition: all 0.3s;
}
.vr-smart-stat-card:hover {
  transform: translateY(-4px);
  border-color: #ff6d00;
  box-shadow: 0 12px 40px rgba(230, 81, 0, 0.1);
}
.vr-smart-stat-card i {
  font-size: 1.5rem;
  color: #ff6d00;
  margin-bottom: 0.5rem;
  display: block;
}
.vr-smart-stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e65100;
  margin-bottom: 0.2rem;
}
.vr-smart-stat-card small {
  color: #718096;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Comparison Table --- */
.vr-compare {
  padding: 5rem 0;
  background: #fff;
}
.vr-table-wrap {
  overflow-x: auto;
  margin-top: 3rem;
}
.vr-table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.vr-table thead th {
  background: linear-gradient(135deg, #e65100, #ff6d00);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 1rem 1.25rem;
  text-align: center;
}
.vr-table thead th:first-child {
  text-align: left;
  background: #bf360c;
}
.vr-table tbody td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  text-align: center;
  color: #333;
}
.vr-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1a1a2e;
}
.vr-table tbody tr:hover {
  background: #fffaf5;
}
.vr-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-size: 0.75rem;
}
.vr-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #fce4ec;
  color: #c62828;
  border-radius: 50%;
  font-size: 0.75rem;
}
.vr-limited {
  color: #ff8f00;
  font-weight: 600;
  font-size: 0.8rem;
}

/* --- Use Cases (Dark) --- */
.vr-cases {
  padding: 5rem 0;
  background: linear-gradient(160deg, #1a0a00 0%, #3e1500 50%, #bf360c 100%);
}
.vr-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vr-case-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.vr-case-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.vr-case-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffcc80;
  margin-bottom: 1.25rem;
}
.vr-case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.vr-case-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* --- Reliability --- */
.vr-rely {
  padding: 5rem 0;
  background: #fffaf5;
}
.vr-rely-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vr-rely-card {
  background: #fff;
  border: 1px solid rgba(230, 81, 0, 0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.vr-rely-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(230, 81, 0, 0.1);
  border-color: rgba(230, 81, 0, 0.15);
}
.vr-rely-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #e65100;
  margin: 0 auto 1.25rem;
}
.vr-rely-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.6rem;
}
.vr-rely-card p {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- CTA --- */
.vr-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #fff3e0 0%, #fbe9e7 50%, #fce4ec 100%);
}
.vr-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.vr-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.vr-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.vr-cta-stats {
  display: flex;
  gap: 2rem;
}
.vr-cta-stat {
  text-align: center;
}
.vr-cta-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e65100;
}
.vr-cta-stat small {
  color: #718096;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vr-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(230, 81, 0, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(230, 81, 0, 0.08);
}
.vr-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #bf360c;
  margin-bottom: 1.5rem;
}
.vr-cta-form input,
.vr-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.vr-cta-form input:focus,
.vr-cta-form select:focus {
  border-color: #ff6d00;
  outline: none;
}

/* WhatsApp Float */
.vr-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.vr-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .vr-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vr-hero-content h1 {
    font-size: 2.25rem;
  }
  .vr-hero-badges {
    justify-content: center;
  }
  .vr-hero-mockup {
    margin-top: 2rem;
  }
  .vr-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-flow {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .vr-flow-connector {
    display: none;
  }
  .vr-flow-step {
    flex: 0 0 45%;
  }
  .vr-pain-grid {
    grid-template-columns: 1fr;
  }
  .vr-smart-grid {
    grid-template-columns: 1fr;
  }
  .vr-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-rely-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vr-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .vr-hero {
    padding: 100px 0 60px;
  }
  .vr-hero-content h1 {
    font-size: 1.85rem;
  }
  .vr-feat-grid {
    grid-template-columns: 1fr;
  }
  .vr-cases-grid {
    grid-template-columns: 1fr;
  }
  .vr-rely-grid {
    grid-template-columns: 1fr;
  }
  .vr-float-chip {
    display: none;
  }
  .vr-cta-text h2 {
    font-size: 1.75rem;
  }
  .vr-smart-card-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .vr-table {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .vr-hero-content h1 {
    font-size: 1.5rem;
  }
  .vr-phone {
    width: 250px;
  }
  .vr-deco {
    display: none;
  }
  .vr-clients-row {
    gap: 1.5rem;
  }
  .vr-clients-row img {
    height: 28px;
  }
  .vr-smart-stat-card {
    width: 120px;
  }
  .vr-cta-stats {
    gap: 1rem;
  }
}

/* ==========================================================================
   SURVEYS PAGE (.sv-*)
   ========================================================================== */

/* --- Header overrides (dark hero) --- */
.page-template-page-surveys .site-header .nav-link,
.page-template-page-surveys .site-header .dropdown-toggle {
  color: rgba(255, 255, 255, 0.85) !important;
}
.page-template-page-surveys .site-header .logo-dark {
  display: none;
}
.page-template-page-surveys .site-header .logo-light {
  display: block !important;
}
.page-template-page-surveys .site-header .mobile-toggle span {
  background: #fff;
}

/* --- Hero --- */
.sv-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #0a1a12 0%,
    #0d2818 35%,
    #112d1b 70%,
    #0a1a12 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.sv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(0, 230, 118, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(29, 233, 182, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.sv-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}
.sv-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.sv-hero-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sv-highlight {
  background: linear-gradient(135deg, #00e676, #1de9b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00e676;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.sv-eyebrow i {
  font-size: 0.75rem;
}
.sv-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #00e676;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.sv-eyebrow-light i {
  font-size: 0.75rem;
}
.sv-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sv-btn-outline {
  border-color: rgba(0, 230, 118, 0.4) !important;
  color: #00e676 !important;
}
.sv-btn-outline:hover {
  background: rgba(0, 230, 118, 0.1) !important;
  border-color: #00e676 !important;
}
.sv-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.sv-badge {
  background: rgba(0, 230, 118, 0.08);
  color: #69f0ae;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.sv-badge i {
  color: #00e676;
  font-size: 0.75rem;
}

/* --- Chat mockup (Hero) --- */
.sv-hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.sv-chat-window {
  width: 340px;
  background: #0d2818;
  border: 1px solid rgba(0, 230, 118, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 230, 118, 0.08);
}
.sv-chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 230, 118, 0.06);
  border-bottom: 1px solid rgba(0, 230, 118, 0.1);
}
.sv-chat-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00c853, #00e676);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
}
.sv-chat-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.sv-chat-status {
  color: #69f0ae;
  font-size: 0.65rem;
  font-weight: 600;
}
.sv-chat-status i {
  font-size: 0.35rem;
  vertical-align: middle;
  margin-right: 3px;
}
.sv-chat-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 420px;
  overflow: hidden;
}
.sv-msg {
  max-width: 85%;
}
.sv-msg span {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.5;
}
.sv-msg-bot {
  align-self: flex-start;
}
.sv-msg-bot span {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border-bottom-left-radius: 4px;
}
.sv-msg-user {
  align-self: flex-end;
}
.sv-msg-user span {
  background: #00c853;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sv-msg-scale {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Float chips */
.sv-float-chip {
  position: absolute;
  background: rgba(13, 40, 24, 0.9);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: 20px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #69f0ae;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sv-float-chip i {
  color: #00e676;
}
.sv-fc-1 {
  top: 8%;
  left: -20px;
}
.sv-fc-2 {
  bottom: 12%;
  right: -15px;
}

/* Deco SVGs */
.sv-deco {
  position: absolute;
  pointer-events: none;
  animation: svFloat 6s ease-in-out infinite;
}
.sv-deco-wave {
  width: 120px;
  top: 12%;
  left: 2%;
}
.sv-deco-dots {
  width: 60px;
  bottom: 10%;
  right: 5%;
  animation-delay: -2s;
}
.sv-deco-chart {
  width: 60px;
  top: 55%;
  left: 1%;
  animation-delay: -4s;
}
@keyframes svFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(3deg);
  }
}

/* --- Clients --- */
.sv-clients {
  padding: 3rem 0;
  background: #f0fdf4;
  border-top: 1px solid rgba(0, 200, 83, 0.06);
}
.sv-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.sv-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.sv-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.sv-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Section header --- */
.sv-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
.sv-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-top: 0.5rem;
}

/* --- Why Features --- */
.sv-why {
  padding: 5rem 0;
  background: #fff;
}
.sv-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sv-feat-card {
  background: #f0fdf4;
  border: 1px solid rgba(0, 200, 83, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.sv-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 200, 83, 0.1);
  border-color: rgba(0, 200, 83, 0.2);
}
.sv-feat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
}
.sv-feat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.sv-feat-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- How It Works (Dark) --- */
.sv-how {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0a1a12 0%, #0d2818 50%, #112d1b 100%);
}
.sv-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}
.sv-flow-step {
  flex: 0 0 240px;
  text-align: center;
  position: relative;
  padding: 0 1.25rem;
}
.sv-flow-circle {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(0, 230, 118, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #00e676;
  margin: 0 auto 1.25rem;
  background: rgba(0, 230, 118, 0.06);
  transition: all 0.3s;
}
.sv-flow-step:hover .sv-flow-circle {
  background: rgba(0, 230, 118, 0.15);
  border-color: #00e676;
  transform: scale(1.1);
}
.sv-flow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.sv-flow-step p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}
.sv-flow-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 230, 118, 0.3),
    rgba(0, 230, 118, 0.1)
  );
  margin-top: 28px;
  flex-shrink: 0;
}

/* --- Channels (Tabs) --- */
.sv-channels {
  padding: 5rem 0;
  background: #f0fdf4;
}
.sv-tab-pills {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  background: #0d2818;
  border-radius: 40px;
  padding: 0.35rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.sv-tab-pill {
  flex: 1;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sv-tab-pill:hover {
  color: #fff;
}
.sv-tab-pill.active {
  background: #00c853;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 200, 83, 0.3);
}
.sv-tab-panel {
  display: none;
  margin-top: 2.5rem;
}
.sv-tab-panel.active {
  display: block;
}
.sv-channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.sv-channel-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.sv-channel-info p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.sv-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.sv-checks li {
  padding: 0.45rem 0;
  color: #333;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.sv-checks i {
  color: #00c853;
  margin-top: 0.2rem;
  font-size: 0.75rem;
}
.sv-ideal {
  background: rgba(0, 200, 83, 0.06);
  border: 1px solid rgba(0, 200, 83, 0.1);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}
.sv-ideal strong {
  color: #00c853;
}

/* --- SMS phone mockup --- */
.sv-channel-mockup {
  display: flex;
  justify-content: center;
}
.sv-sms-phone {
  width: 260px;
  background: #e8e8e8;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
}
.sv-sms-phone-notch {
  width: 90px;
  height: 20px;
  background: #e8e8e8;
  border-radius: 0 0 12px 12px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.sv-sms-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.sv-sms-header-bar {
  background: #f5f5f5;
  padding: 2rem 1rem 0.6rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}
.sv-sms-body {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.sv-sms-bubble {
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  font-size: 0.72rem;
  line-height: 1.45;
  max-width: 82%;
}
.sv-sms-in {
  background: #e8e8e8;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sv-sms-out {
  background: #00c853;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* --- WhatsApp phone mockup --- */
.sv-wa-phone {
  width: 300px;
  background: #0d2818;
  border: 1px solid rgba(0, 230, 118, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}
.sv-wa-phone-notch {
  width: 90px;
  height: 18px;
  background: #0d2818;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.sv-wa-screen {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}
.sv-wa-header-bar {
  background: rgba(0, 230, 118, 0.06);
  border-bottom: 1px solid rgba(0, 230, 118, 0.1);
  padding: 1.5rem 1rem 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sv-wa-header-bar i {
  color: #25d366;
}
.sv-wa-body {
  padding: 0.75rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}
.sv-wa-bubble {
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.75rem;
  line-height: 1.5;
  max-width: 85%;
}
.sv-wa-in {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sv-wa-out {
  background: #00c853;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.sv-wa-scale {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Use Cases (Dark) --- */
.sv-cases {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0a1a12 0%, #0d2818 50%, #112d1b 100%);
}
.sv-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sv-case-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.sv-case-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 230, 118, 0.2);
}
.sv-case-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 230, 118, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #69f0ae;
  margin-bottom: 1.25rem;
}
.sv-case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.sv-case-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.sv-case-result {
  color: #00e676;
  font-size: 0.82rem;
  font-weight: 600;
}

/* --- CTA --- */
.sv-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #e8f5e9 0%, #f0fdf4 50%, #e0f2f1 100%);
}
.sv-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sv-cta-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.sv-cta-text p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sv-cta-stats {
  display: flex;
  gap: 2rem;
}
.sv-cta-stat {
  text-align: center;
}
.sv-cta-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #00c853;
}
.sv-cta-stat small {
  color: #718096;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sv-cta-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 200, 83, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 200, 83, 0.08);
}
.sv-cta-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #00c853;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sv-cta-form h3 i {
  font-size: 1rem;
}
.sv-form-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.sv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.sv-form-group {
  width: 100%;
}
.sv-cta-form input,
.sv-cta-form select {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  width: 100%;
  background: #fff;
}
.sv-cta-form input:focus,
.sv-cta-form select:focus {
  border-color: #00c853;
  outline: none;
}
.sv-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

/* WhatsApp float */
.sv-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.sv-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sv-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sv-hero-content h1 {
    font-size: 2.25rem;
  }
  .sv-hero-badges {
    justify-content: center;
  }
  .sv-hero-btns {
    justify-content: center;
  }
  .sv-hero-mockup {
    margin-top: 2rem;
  }
  .sv-feat-grid {
    grid-template-columns: 1fr;
  }
  .sv-flow {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .sv-flow-line {
    display: none;
  }
  .sv-flow-step {
    flex: 0 0 100%;
  }
  .sv-channel-grid {
    grid-template-columns: 1fr;
  }
  .sv-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-cta-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .sv-hero {
    padding: 100px 0 60px;
  }
  .sv-hero-content h1 {
    font-size: 1.85rem;
  }
  .sv-cases-grid {
    grid-template-columns: 1fr;
  }
  .sv-float-chip {
    display: none;
  }
  .sv-section-head h2 {
    font-size: 1.75rem;
  }
  .sv-cta-text h2 {
    font-size: 1.75rem;
  }
  .sv-tab-pills {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .sv-hero-content h1 {
    font-size: 1.5rem;
  }
  .sv-chat-window {
    width: 280px;
  }
  .sv-deco {
    display: none;
  }
  .sv-clients-row {
    gap: 1.5rem;
  }
  .sv-clients-row img {
    height: 28px;
  }
  .sv-form-row {
    grid-template-columns: 1fr;
  }
  .sv-cta-stats {
    gap: 1rem;
  }
  .sv-sms-phone {
    width: 230px;
  }
  .sv-wa-phone {
    width: 260px;
  }
}

/* ==========================================================================
   FINANCIAL SOLUTIONS PAGE (.fn-*)
   ========================================================================== */

/* --- Header overrides (dark hero) --- */
.page-template-page-financial .site-header .nav-link,
.page-template-page-financial .site-header .dropdown-toggle {
  color: rgba(255, 255, 255, 0.85);
}
.page-template-page-financial .site-header .logo-dark {
  display: none;
}
.page-template-page-financial .site-header .logo-light {
  display: block !important;
}
.page-template-page-financial .site-header .mobile-toggle span {
  background: #fff;
}
.page-template-page-financial .site-header.scrolled .nav-link,
.page-template-page-financial .site-header.scrolled .dropdown-toggle {
  color: var(--rt-gray-800);
}
.page-template-page-financial .site-header.scrolled .nav-link:hover {
  color: var(--rt-primary);
}
.page-template-page-financial .site-header.scrolled .logo-dark {
  display: block;
}
.page-template-page-financial .site-header.scrolled .logo-light {
  display: none !important;
}
.page-template-page-financial .site-header.scrolled .mobile-toggle span {
  background: var(--rt-dark);
}

/* --- Hero --- */
.fn-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #0b1121 0%,
    #0f1b33 35%,
    #132240 70%,
    #0b1121 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.fn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(0, 150, 136, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.fn-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}
.fn-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.fn-hero-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.fn-highlight {
  background: linear-gradient(135deg, #d4af37, #f0c75e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.fn-eyebrow i {
  font-size: 0.75rem;
}
.fn-eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d7377;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.fn-eyebrow-dark i {
  font-size: 0.75rem;
}
.fn-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.fn-eyebrow-light i {
  font-size: 0.75rem;
}
.fn-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #d4af37, #c69c2e);
  color: #0b1121;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.fn-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  color: #0b1121;
}
.fn-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.fn-trust-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fn-trust-item i {
  color: #d4af37;
  font-size: 0.75rem;
}

/* --- Dashboard mockup --- */
.fn-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.fn-dashboard {
  width: 340px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.fn-dash-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.fn-dash-logo {
  color: #d4af37;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fn-dash-user {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}
.fn-dash-balance {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12),
    rgba(212, 175, 55, 0.04)
  );
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.fn-dash-balance small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fn-dash-balance strong {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.25rem 0;
}
.fn-dash-balance strong span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}
.fn-dash-bal-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.fn-bal-up {
  color: #4caf50;
  font-size: 0.75rem;
  font-weight: 700;
}
.fn-bal-period {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.7rem;
}
.fn-dash-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.fn-dash-act {
  text-align: center;
  padding: 0.6rem 0.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.2s;
  cursor: pointer;
}
.fn-dash-act:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}
.fn-dash-act i {
  display: block;
  color: #d4af37;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.fn-dash-act span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-weight: 600;
}
.fn-dash-txns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fn-dash-txn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}
.fn-txn-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.fn-txn-in {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.fn-txn-out {
  background: rgba(244, 67, 54, 0.12);
  color: #ef5350;
}
.fn-txn-loan {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
}
.fn-txn-info {
  flex: 1;
}
.fn-txn-info strong {
  display: block;
  color: #fff;
  font-size: 0.72rem;
}
.fn-txn-info small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.6rem;
}
.fn-txn-amt {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.fn-txn-green {
  color: #4caf50;
}
.fn-txn-red {
  color: #ef5350;
}

/* Float cards */
.fn-float-card {
  position: absolute;
  background: rgba(15, 27, 51, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}
.fn-float-card strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
}
.fn-float-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}
.fn-fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.fn-fc-icon-green {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}
.fn-fc-1 {
  top: 5%;
  left: -30px;
  animation: fnFloat 5s ease-in-out infinite;
}
.fn-fc-2 {
  bottom: 8%;
  right: -25px;
  animation: fnFloat 5s ease-in-out infinite -2.5s;
}

/* Deco */
.fn-deco {
  position: absolute;
  pointer-events: none;
}
.fn-deco-grid {
  width: 200px;
  top: 5%;
  right: 3%;
  opacity: 0.5;
}
.fn-deco-coin {
  width: 60px;
  bottom: 12%;
  left: 3%;
  animation: fnFloat 6s ease-in-out infinite;
}
@keyframes fnFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* --- Clients --- */
.fn-clients {
  padding: 3rem 0;
  background: #f8f6f0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}
.fn-clients-label {
  text-align: center;
  color: #718096;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.fn-clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.fn-clients-row img {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
}
.fn-clients-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* --- Section heads --- */
.fn-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
.fn-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-top: 0.5rem;
}

/* --- Products --- */
.fn-services {
  padding: 5rem 0;
  background: #fff;
}
.fn-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.fn-product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.fn-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}
.fn-product-paykit::before {
  background: linear-gradient(90deg, #1e3a8a, #45b1e3);
}
.fn-product-afrisend::before {
  background: linear-gradient(90deg, #0099dd, #45b649);
}
.fn-product-senti::before {
  background: linear-gradient(90deg, #3bb0e5, #f5a623);
}
.fn-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.fn-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.fn-product-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  overflow: hidden;
}
.fn-product-logo,
.fn-cta-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}
.fn-pi-paykit {
  background: linear-gradient(135deg, #1e3a8a, #45b1e3);
  color: #fff;
}
.fn-pi-afrisend {
  background: linear-gradient(135deg, #0099dd, #45b649);
  color: #fff;
}
.fn-pi-senti {
  background: linear-gradient(135deg, #3bb0e5, #f5a623);
  color: #fff;
}
.fn-product-ribbon {
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
}
.fn-ribbon-afrisend {
  background: rgba(69, 182, 73, 0.08);
  color: #2e8b37;
}
.fn-ribbon-senti {
  background: rgba(59, 176, 229, 0.08);
  color: #2e8eb8;
}
.fn-product-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
}
.fn-product-tagline {
  color: #718096;
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.fn-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.fn-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}
.fn-product-features li i {
  color: #1e3a8a;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.fn-product-afrisend .fn-product-features li i {
  color: #2e8b37;
}
.fn-product-senti .fn-product-features li i {
  color: #2e8eb8;
}
.fn-product-afrisend .fn-product-features li i {
  color: #8d6e42;
}
.fn-product-senti .fn-product-features li i {
  color: #546e7a;
}
.fn-product-features li strong {
  display: block;
  color: #1a1a2e;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.fn-product-features li span {
  color: #718096;
  font-size: 0.82rem;
  line-height: 1.4;
}
.fn-product-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.fn-pb-paykit {
  background: #1e3a8a;
  color: #fff;
}
.fn-pb-paykit:hover {
  background: #162d6e;
  color: #fff;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}
.fn-pb-afrisend {
  background: #45b649;
  color: #fff;
}
.fn-pb-afrisend:hover {
  background: #3a9c3e;
  color: #fff;
  box-shadow: 0 8px 24px rgba(69, 182, 73, 0.25);
}
.fn-pb-senti {
  background: #3bb0e5;
  color: #fff;
}
.fn-pb-senti:hover {
  background: #2e9ad0;
  color: #fff;
  box-shadow: 0 8px 24px rgba(59, 176, 229, 0.25);
}

/* --- Why Choose Us (Dark) --- */
.fn-why {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0b1121 0%, #0f1b33 50%, #132240 100%);
}
.fn-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.fn-why-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}
.fn-why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.2);
}
.fn-why-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #d4af37;
  margin: 0 auto 1.25rem;
}
.fn-why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.fn-why-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- CTA --- */
.fn-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #f8f6f0 0%, #faf8f2 50%, #f5f0e6 100%);
}
.fn-cta-inner {
  text-align: center;
}
.fn-cta-content {
  margin-bottom: 3rem;
}
.fn-cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 0.75rem;
}
.fn-cta-content p {
  color: #4a5568;
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto;
}
.fn-cta-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.fn-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}
.fn-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.fn-cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  overflow: hidden;
}
.fn-cta-card strong {
  color: #1a1a2e;
  font-size: 1rem;
}
.fn-cta-card small {
  color: #718096;
  font-size: 0.78rem;
}
.fn-cta-arrow {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  transition: all 0.3s;
}
.fn-cta-card:hover .fn-cta-arrow {
  background: #0d7377;
  color: #fff;
}

/* WhatsApp float */
.fn-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.fn-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .fn-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fn-hero-content h1 {
    font-size: 2.25rem;
  }
  .fn-hero-btns {
    justify-content: center;
  }
  .fn-hero-trust {
    justify-content: center;
  }
  .fn-hero-visual {
    margin-top: 2rem;
  }
  .fn-products {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .fn-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fn-cta-actions {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}
@media (max-width: 768px) {
  .fn-hero {
    padding: 100px 0 60px;
  }
  .fn-hero-content h1 {
    font-size: 1.85rem;
  }
  .fn-why-grid {
    grid-template-columns: 1fr;
  }
  .fn-float-card {
    display: none;
  }
  .fn-section-head h2 {
    font-size: 1.75rem;
  }
  .fn-cta-content h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .fn-hero-content h1 {
    font-size: 1.5rem;
  }
  .fn-dashboard {
    width: 290px;
  }
  .fn-deco {
    display: none;
  }
  .fn-clients-row {
    gap: 1.5rem;
  }
  .fn-clients-row img {
    height: 28px;
  }
  .fn-dash-balance strong {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   SKIZA BIASHARA PAGE (.sk-*)
   Theme: Deep charcoal #111 / vibrant orange #e8590c / warm amber #ff8c42
   ========================================================================== */

/* --- Header overrides (dark hero) --- */
.page-template-page-skiza-biashara .site-header .nav-link,
.page-template-page-skiza-biashara .site-header .dropdown-toggle {
  color: rgba(255, 255, 255, 0.85) !important;
}
.page-template-page-skiza-biashara .site-header .logo-dark {
  display: none;
}
.page-template-page-skiza-biashara .site-header .logo-light {
  display: block !important;
}
.page-template-page-skiza-biashara .site-header .mobile-toggle span {
  background: #fff;
}

/* --- Hero --- */
.sk-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #0a0a0a 0%,
    #111111 30%,
    #1a1a1a 60%,
    #111111 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.sk-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 25% 75%,
      rgba(232, 89, 12, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 75% 25%,
      rgba(255, 140, 66, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.sk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}
.sk-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.25rem;
}
.sk-hero-content p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sk-highlight {
  background: linear-gradient(135deg, #e8590c, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8590c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.sk-eyebrow i {
  font-size: 0.75rem;
}
.sk-eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8590c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.sk-eyebrow-dark i {
  font-size: 0.75rem;
}
.sk-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff8c42;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.sk-eyebrow-light i {
  font-size: 0.75rem;
}
.sk-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #e8590c, #d44e0a);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.sk-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 89, 12, 0.35);
  color: #fff;
}
.sk-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.sk-btn-ghost:hover {
  border-color: #e8590c;
  color: #e8590c;
}
.sk-hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}
.sk-hero-stat strong {
  color: #e8590c;
}
.sk-stat-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8590c;
  animation: skPulse 2s ease-in-out infinite;
}
@keyframes skPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 89, 12, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 89, 12, 0);
  }
}

/* --- Phone Mockup --- */
.sk-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.sk-phone {
  width: 280px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  padding: 1rem;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
}
.sk-phone-notch {
  width: 100px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin: 0 auto 1.5rem;
}
.sk-call-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.5rem 1.25rem;
}
.sk-call-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8590c, #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.sk-call-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.sk-call-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

/* Waveform */
.sk-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1rem;
  height: 44px;
}
.sk-waveform span {
  width: 3px;
  height: var(--h, 20px);
  background: linear-gradient(180deg, #e8590c, #ff8c42);
  border-radius: 2px;
  animation: skWave 1.2s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes skWave {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.sk-call-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(232, 89, 12, 0.08);
  border: 1px solid rgba(232, 89, 12, 0.15);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  width: 100%;
}
.sk-call-msg i {
  color: #e8590c;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.sk-call-msg span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  line-height: 1.45;
  font-style: italic;
}
.sk-call-actions {
  display: flex;
  gap: 2.5rem;
}
.sk-call-decline {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #dc3545;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.sk-call-accept {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #28a745;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

/* Float cards */
.sk-float-card {
  position: absolute;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}
.sk-float-card strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
}
.sk-float-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6rem;
}
.sk-fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(232, 89, 12, 0.15);
  color: #e8590c;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.sk-fc-icon-green {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.sk-fc-1 {
  top: 8%;
  left: -30px;
  animation: skFloat 5s ease-in-out infinite;
}
.sk-fc-2 {
  bottom: 12%;
  right: -25px;
  animation: skFloat 5s ease-in-out infinite -2.5s;
}
@keyframes skFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Decorative SVGs */
.sk-deco {
  position: absolute;
  pointer-events: none;
}
.sk-deco-waves {
  width: 300px;
  top: 10%;
  right: 5%;
  opacity: 0.6;
}
.sk-deco-dots {
  width: 120px;
  bottom: 15%;
  left: 5%;
}

/* --- Section heads --- */
.sk-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
.sk-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.5rem;
}
.sk-section-head p {
  color: #718096;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* --- Compare (Before/After) --- */
.sk-compare {
  padding: 5rem 0;
  background: #fff;
}
.sk-section-head h2 {
  color: #1a1a2e;
}
.sk-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.sk-compare-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.sk-compare-before {
  background: #fef5f5;
  border: 1px solid rgba(220, 53, 69, 0.12);
}
.sk-compare-after {
  background: #f0faf4;
  border: 1px solid rgba(40, 167, 69, 0.12);
}
.sk-compare-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.sk-badge-before {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.sk-badge-after {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.sk-compare-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.sk-compare-before h3 {
  color: #c0392b;
}
.sk-compare-after h3 {
  color: #1e8449;
}
.sk-compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sk-compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.sk-compare-card li:last-child {
  border-bottom: none;
}
.sk-x,
.sk-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.sk-x {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.sk-check {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.sk-compare-card li strong {
  font-size: 0.92rem;
  font-weight: 600;
}
.sk-compare-before li strong {
  color: #4a3030;
}
.sk-compare-after li strong {
  color: #1a3a2a;
}

/* --- Why Section --- */
.sk-why {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #1a1a1a 100%);
}
.sk-why .sk-section-head h2 {
  color: #fff;
}
.sk-why .sk-section-head p {
  color: rgba(255, 255, 255, 0.5);
}
.sk-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sk-why-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.sk-why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 89, 12, 0.2);
}
.sk-why-icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 89, 12, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #e8590c;
  margin-bottom: 1.25rem;
}
.sk-why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.sk-why-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Samples (Dark section matching screenshot) --- */
.sk-samples {
  padding: 5rem 0;
  background: linear-gradient(160deg, #111111 0%, #0e0e0e 50%, #151515 100%);
}
.sk-samples .sk-section-head h2 {
  color: #fff;
}
.sk-samples .sk-section-head p {
  color: rgba(255, 255, 255, 0.45);
}
.sk-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.sk-sample-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.sk-sample-card:hover {
  border-color: rgba(232, 89, 12, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.sk-sample-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.sk-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8590c;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s;
  padding-left: 2px;
}
.sk-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 89, 12, 0.4);
}
.sk-sample-info strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}
.sk-sample-info span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}

/* Waveform bars */
.sk-sample-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 32px;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem;
}
.sk-sample-wave span {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  min-width: 3px;
  height: 100%;
  transform: scaleY(var(--scale, 1));
  transition: background 0.2s;
}
.sk-sample-wave span:nth-child(1) {
  --scale: 0.3;
}
.sk-sample-wave span:nth-child(2) {
  --scale: 0.6;
}
.sk-sample-wave span:nth-child(3) {
  --scale: 0.4;
}
.sk-sample-wave span:nth-child(4) {
  --scale: 0.9;
}
.sk-sample-wave span:nth-child(5) {
  --scale: 0.5;
}
.sk-sample-wave span:nth-child(6) {
  --scale: 0.7;
}
.sk-sample-wave span:nth-child(7) {
  --scale: 0.3;
}
.sk-sample-wave span:nth-child(8) {
  --scale: 1;
}
.sk-sample-wave span:nth-child(9) {
  --scale: 0.6;
}
.sk-sample-wave span:nth-child(10) {
  --scale: 0.4;
}
.sk-sample-wave span:nth-child(11) {
  --scale: 0.8;
}
.sk-sample-wave span:nth-child(12) {
  --scale: 0.5;
}
.sk-sample-wave span:nth-child(13) {
  --scale: 0.3;
}
.sk-sample-wave span:nth-child(14) {
  --scale: 0.7;
}
.sk-sample-wave span:nth-child(15) {
  --scale: 0.9;
}
.sk-sample-wave span:nth-child(16) {
  --scale: 0.4;
}
.sk-sample-wave span:nth-child(17) {
  --scale: 0.6;
}
.sk-sample-wave span:nth-child(18) {
  --scale: 0.3;
}
.sk-sample-wave span:nth-child(19) {
  --scale: 0.8;
}
.sk-sample-wave span:nth-child(20) {
  --scale: 0.5;
}
.sk-sample-wave span:nth-child(21) {
  --scale: 1;
}
.sk-sample-wave span:nth-child(22) {
  --scale: 0.4;
}
.sk-sample-wave span:nth-child(23) {
  --scale: 0.7;
}
.sk-sample-wave span:nth-child(24) {
  --scale: 0.6;
}
.sk-sample-wave span:nth-child(25) {
  --scale: 0.3;
}
.sk-sample-card:hover .sk-sample-wave span {
  background: rgba(232, 89, 12, 0.35);
}
.sk-sample-card.sk-playing .sk-sample-wave span {
  background: rgba(232, 89, 12, 0.5);
  animation: skSampleWave 0.8s ease-in-out infinite alternate;
}
.sk-sample-card.sk-playing .sk-sample-wave span:nth-child(odd) {
  animation-delay: 0s;
}
.sk-sample-card.sk-playing .sk-sample-wave span:nth-child(even) {
  animation-delay: 0.15s;
}
@keyframes skSampleWave {
  0% {
    transform: scaleY(var(--scale, 1));
  }
  100% {
    transform: scaleY(calc(var(--scale, 1) * 0.4));
  }
}
.sk-sample-card.sk-playing {
  border-color: rgba(232, 89, 12, 0.35);
  background: rgba(232, 89, 12, 0.06);
}
.sk-sample-footer {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.72rem;
}
.sk-sample-footer i {
  margin-right: 0.25rem;
  color: rgba(255, 255, 255, 0.2);
}

/* --- Pricing --- */
.sk-pricing {
  padding: 5rem 0;
  background: #f9f9f9;
}
.sk-pricing .sk-section-head h2 {
  color: #1a1a2e;
}
.sk-pricing .sk-section-head p {
  color: #718096;
}
.sk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.sk-price-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.sk-price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.sk-price-featured {
  border-color: rgba(232, 89, 12, 0.2);
  box-shadow: 0 8px 40px rgba(232, 89, 12, 0.08);
}
.sk-price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #e8590c, #d44e0a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
}
.sk-price-badge {
  display: inline-block;
  padding: 0.45rem 1.5rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 1.25rem;
}
.sk-badge-bronze {
  background: linear-gradient(135deg, #cd7f32, #b8722c);
}
.sk-badge-silver {
  background: linear-gradient(135deg, #9e9e9e, #8a8a8a);
}
.sk-badge-gold {
  background: linear-gradient(135deg, #d4a437, #c69525);
}
.sk-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1rem;
}
.sk-price-currency {
  font-size: 1rem;
  font-weight: 600;
  color: #718096;
  vertical-align: super;
  margin-right: 0.15rem;
}
.sk-price-desc {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
}
.sk-price-features-label {
  color: #e8590c;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
.sk-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.sk-price-features li {
  padding: 0.5rem 0;
  color: #4a5568;
  font-size: 0.9rem;
  border-bottom: 1px solid #f7f7f7;
}
.sk-price-features li:last-child {
  border-bottom: none;
}
.sk-price-features li i {
  color: #e8590c;
  font-size: 0.7rem;
  margin-right: 0.5rem;
}
.sk-price-btn {
  display: inline-block;
  width: 100%;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}
.sk-price-btn-bronze {
  background: linear-gradient(135deg, #cd7f32, #b8722c);
  color: #fff;
}
.sk-price-btn-bronze:hover {
  box-shadow: 0 8px 24px rgba(205, 127, 50, 0.3);
  color: #fff;
  transform: translateY(-2px);
}
.sk-price-btn-silver {
  background: linear-gradient(135deg, #e8590c, #d44e0a);
  color: #fff;
}
.sk-price-btn-silver:hover {
  box-shadow: 0 8px 24px rgba(232, 89, 12, 0.3);
  color: #fff;
  transform: translateY(-2px);
}
.sk-price-btn-gold {
  background: linear-gradient(135deg, #d4a437, #c69525);
  color: #fff;
}
.sk-price-btn-gold:hover {
  box-shadow: 0 8px 24px rgba(212, 164, 55, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

/* --- How It Works (Timeline) --- */
.sk-how {
  padding: 5rem 0;
  background: #fff;
}
.sk-timeline {
  position: relative;
  max-width: 680px;
  margin: 3rem auto 0;
}
.sk-timeline-line {
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    #e8590c 0%,
    #ff8c42 50%,
    rgba(232, 89, 12, 0.15) 100%
  );
}
.sk-step {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.25rem;
  position: relative;
}
.sk-step:last-child {
  padding-bottom: 0;
}
.sk-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8590c, #d44e0a);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(232, 89, 12, 0.25);
}
.sk-step-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.35rem;
}
.sk-step-body p {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- CTA / Form --- */
.sk-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #111111 0%, #1a1a1a 50%, #111111 100%);
}
.sk-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.sk-cta-left h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}
.sk-cta-left p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.sk-cta-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.sk-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
}
.sk-perk i {
  color: #e8590c;
  font-size: 0.8rem;
}
.sk-cta-form {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.25rem;
}
.sk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sk-form-group {
  margin-bottom: 1rem;
}
.sk-form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.sk-form-group label small {
  font-weight: 400;
  opacity: 0.7;
}
.sk-form-group input,
.sk-form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
}
.sk-form-group input::placeholder,
.sk-form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.sk-form-group input:focus,
.sk-form-group textarea:focus {
  border-color: #e8590c;
}
.sk-form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.sk-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, #e8590c, #d44e0a);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.sk-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 89, 12, 0.35);
}

/* WhatsApp float */
.sk-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.sk-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sk-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .sk-hero-content h1 {
    font-size: 2.25rem;
  }
  .sk-hero-btns {
    justify-content: center;
  }
  .sk-hero-stat {
    justify-content: center;
  }
  .sk-hero-visual {
    margin-top: 2rem;
  }
  .sk-compare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .sk-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sk-samples-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .sk-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .sk-cta-inner {
    grid-template-columns: 1fr;
  }
  .sk-cta-left {
    text-align: center;
  }
  .sk-cta-perks {
    justify-items: center;
  }
}
@media (max-width: 768px) {
  .sk-hero {
    padding: 100px 0 60px;
  }
  .sk-hero-content h1 {
    font-size: 1.85rem;
  }
  .sk-why-grid {
    grid-template-columns: 1fr;
  }
  .sk-float-card {
    display: none;
  }
  .sk-section-head h2 {
    font-size: 1.75rem;
  }
  .sk-cta-left h2 {
    font-size: 1.75rem;
  }
  .sk-form-row {
    grid-template-columns: 1fr;
  }
  .sk-cta-perks {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .sk-hero-content h1 {
    font-size: 1.5rem;
  }
  .sk-phone {
    width: 250px;
  }
  .sk-deco {
    display: none;
  }
  .sk-waveform span {
    width: 2px;
  }
}

/* ==========================================================================
   OMNICHANNEL PAGE (.om-*)
   Theme: Dark charcoal #0d1117 / coral-orange #ff6b35 / teal #15b8a6
   ========================================================================== */

/* --- Header overrides (dark hero) --- */
.page-template-page-omnichannel .site-header .nav-link,
.page-template-page-omnichannel .site-header .dropdown-toggle {
  color: rgba(255, 255, 255, 0.85) !important;
}
.page-template-page-omnichannel .site-header .logo-dark {
  display: none;
}
.page-template-page-omnichannel .site-header .logo-light {
  display: block !important;
}
.page-template-page-omnichannel .site-header .mobile-toggle span {
  background: #fff;
}

/* --- Hero --- */
.om-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    160deg,
    #0d1117 0%,
    #111820 30%,
    #161b25 60%,
    #0d1117 100%
  );
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.om-hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.06) 0%,
    transparent 70%
  );
  top: -100px;
  right: -200px;
  pointer-events: none;
}
.om-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 80%,
    rgba(21, 184, 166, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.om-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.om-hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.25rem;
}
.om-hero-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.om-hero-sub {
  color: rgba(255, 255, 255, 0.35) !important;
  font-size: 0.95rem !important;
  font-style: italic;
  margin-bottom: 2rem !important;
}
.om-highlight {
  background: linear-gradient(135deg, #ff6b35, #ff9a5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.om-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #15b8a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  background: rgba(21, 184, 166, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 30px;
}
.om-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #15b8a6;
  display: inline-block;
}
.om-eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.om-eyebrow-dark i {
  font-size: 0.75rem;
}
.om-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #15b8a6;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.om-eyebrow-light i {
  font-size: 0.75rem;
}
.om-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.om-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #ff6b35, #e55a28);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.om-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
  color: #fff;
}
.om-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
}
.om-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* --- Channel Stack (Hero visual) --- */
.om-hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.om-channel-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 320px;
}
.om-channel-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s;
  cursor: default;
}
.om-channel-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(-4px);
}
.om-channel-card strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
}
.om-channel-card small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}
.om-ch-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.om-ch-sms {
  background: rgba(255, 107, 53, 0.15);
  color: #ff6b35;
}
.om-ch-wa {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}
.om-ch-email {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
}
.om-ch-voice {
  background: rgba(156, 39, 176, 0.12);
  color: #9c27b0;
}
.om-ch-ussd {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
}
.om-ch-social {
  background: rgba(21, 184, 166, 0.12);
  color: #15b8a6;
}

/* Deco */
.om-deco {
  position: absolute;
  pointer-events: none;
}
.om-deco-grid {
  width: 400px;
  top: 0;
  left: 0;
  opacity: 0.5;
}

/* --- Section heads --- */
.om-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
.om-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-top: 0.5rem;
  color: #1a1a2e;
}
.om-section-head p {
  color: #718096;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
}

/* --- Proof Bar --- */
.om-proof {
  padding: 3rem 0;
  background: #0d1117;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.om-proof-label {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.om-proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.om-stat {
  text-align: center;
}
.om-stat strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}
.om-stat span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}
.om-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}

/* --- Pillars --- */
.om-pillars {
  padding: 5rem 0;
  background: #f8f9fb;
}
.om-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.om-pillar-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.25rem;
  transition: all 0.3s;
}
.om-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.om-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}
.om-pillar-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.om-pillar-card > p {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.om-pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.om-pillar-card li {
  padding: 0.35rem 0;
  color: #4a5568;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.om-pillar-card li i {
  color: #15b8a6;
  font-size: 0.7rem;
}
.om-pillar-result {
  padding: 0.6rem 0.85rem;
  background: rgba(21, 184, 166, 0.06);
  border-radius: 8px;
  color: #15b8a6;
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.om-pillar-result i {
  font-size: 0.7rem;
}

/* --- Channel Stack Section (Dark) --- */
.om-stack {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0d1117 0%, #131a22 50%, #0d1117 100%);
}
.om-stack .om-section-head h2 {
  color: #fff;
}
.om-stack .om-section-head p {
  color: rgba(255, 255, 255, 0.45);
}
.om-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.om-stack-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all 0.3s;
}
.om-stack-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 107, 53, 0.15);
  transform: translateY(-4px);
}
.om-stack-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.om-si-msg {
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35;
}
.om-si-engage {
  background: rgba(21, 184, 166, 0.12);
  color: #15b8a6;
}
.om-si-pay {
  background: rgba(76, 175, 80, 0.12);
  color: #4caf50;
}
.om-si-voice {
  background: rgba(156, 39, 176, 0.12);
  color: #9c27b0;
}
.om-si-api {
  background: rgba(66, 133, 244, 0.12);
  color: #4285f4;
}
.om-si-analytics {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
}
.om-stack-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.om-stack-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.om-stack-card li {
  padding: 0.35rem 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.om-stack-card li:last-child {
  border-bottom: none;
}

/* --- Use Cases --- */
.om-usecases {
  padding: 5rem 0;
  background: #fff;
}
.om-uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.om-uc-card {
  background: #f9fafb;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s;
}
.om-uc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.om-uc-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}
.om-uc-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}
.om-uc-card p {
  color: #718096;
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.om-uc-outcome {
  color: #15b8a6;
  font-size: 0.82rem;
  font-weight: 700;
}

/* --- Teams --- */
.om-teams {
  padding: 5rem 0;
  background: #f8f9fb;
}
.om-teams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.om-team-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s;
}
.om-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.om-team-dev {
  background: linear-gradient(160deg, #0d1117 0%, #161b25 100%);
  border-color: rgba(255, 255, 255, 0.06);
}
.om-team-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 107, 53, 0.08);
  color: #ff6b35;
  margin-bottom: 1.25rem;
}
.om-team-badge-dev {
  background: rgba(21, 184, 166, 0.12);
  color: #15b8a6;
}
.om-team-card > p {
  color: #718096;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.om-team-dev > p {
  color: rgba(255, 255, 255, 0.5);
}
.om-team-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.om-team-card li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0;
  color: #4a5568;
  font-size: 0.9rem;
}
.om-team-card li i {
  color: #15b8a6;
  font-size: 0.8rem;
}
.om-team-dev li {
  color: rgba(255, 255, 255, 0.55);
}
.om-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}
.om-team-btn-biz {
  background: #ff6b35;
  color: #fff;
}
.om-team-btn-biz:hover {
  background: #e55a28;
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
}
.om-team-btn-dev {
  background: rgba(21, 184, 166, 0.12);
  color: #15b8a6;
}
.om-team-btn-dev:hover {
  background: #15b8a6;
  color: #fff;
}

/* --- CTA --- */
.om-cta {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0d1117 0%, #131a22 50%, #0d1117 100%);
}
.om-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.om-cta-inner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0.5rem 0 0.75rem;
}
.om-cta-inner p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.om-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* WhatsApp float */
.om-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}
.om-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .om-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .om-hero-content h1 {
    font-size: 2.5rem;
  }
  .om-hero-btns {
    justify-content: center;
  }
  .om-hero-visual {
    margin-top: 2rem;
    justify-content: center;
  }
  .om-channel-stack {
    width: 340px;
  }
  .om-pillars-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .om-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .om-uc-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .om-teams-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .om-hero {
    padding: 100px 0 60px;
  }
  .om-hero-content h1 {
    font-size: 2rem;
  }
  .om-proof-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  .om-stat-divider {
    width: 60px;
    height: 1px;
  }
  .om-stack-grid {
    grid-template-columns: 1fr;
  }
  .om-section-head h2 {
    font-size: 1.75rem;
  }
  .om-cta-inner h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 480px) {
  .om-hero-content h1 {
    font-size: 1.6rem;
  }
  .om-channel-stack {
    width: 100%;
  }
  .om-deco {
    display: none;
  }
  .om-eyebrow {
    font-size: 0.65rem;
    padding: 0.3rem 0.75rem;
  }
}

/* ============================================================
   ABOUT PAGE (.ab-*)
   ============================================================ */

/* --- Shared Utility: Decorative Shapes --- */
.ab-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ab-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.ab-shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 182, 122, 0.5);
  top: -120px;
  right: -100px;
}
.ab-shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 82, 204, 0.5);
  bottom: -80px;
  left: -60px;
}
.ab-shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- Shared Utility: Eyebrow Badge --- */
.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--rt-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: var(--rt-radius-full);
  margin-bottom: var(--rt-space-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.ab-dot {
  width: 8px;
  height: 8px;
  background: var(--rt-secondary);
  border-radius: 50%;
  animation: ab-pulse 2s ease-in-out infinite;
}
@keyframes ab-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* --- Shared Utility: Gradient Text --- */
.ab-gradient-text {
  background: linear-gradient(135deg, #00b67a, #4dd8a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- About Hero --- */
.ab-hero {
  position: relative;
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-4xl)) 0
    var(--rt-space-4xl);
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(0, 82, 204, 0.2) 0%,
      transparent 50%
    );
}
.ab-hero .container {
  position: relative;
  z-index: 1;
}
.ab-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-3xl);
  align-items: center;
}
.ab-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: var(--rt-space-lg);
  color: var(--rt-white);
}
.ab-hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 520px;
}
.ab-hero-stats {
  display: flex;
  gap: var(--rt-space-xl);
  margin-top: var(--rt-space-2xl);
}
.ab-hero-stats .ab-stat {
  text-align: center;
}
.ab-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--rt-secondary);
}
.ab-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ab-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

/* About Hero Visual */
.ab-hero-visual {
  position: relative;
  height: 420px;
}
.ab-visual-card {
  position: absolute;
  background: white;
  border-radius: var(--rt-radius-lg);
  padding: 1.25rem;
  box-shadow: var(--rt-shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: ab-float 6s ease-in-out infinite;
}
.ab-visual-card i {
  font-size: 1.5rem;
}
.ab-vc-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.ab-vc-1 i {
  color: var(--rt-primary);
}
.ab-vc-2 {
  top: 5%;
  right: 10%;
  animation-delay: 1.5s;
}
.ab-vc-2 i {
  color: var(--rt-secondary);
}
.ab-vc-3 {
  bottom: 20%;
  left: 0;
  animation-delay: 3s;
}
.ab-vc-3 i {
  color: var(--rt-accent);
}
.ab-vc-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 4.5s;
}
.ab-vc-4 i {
  color: #8b5cf6;
}
.ab-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--rt-gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 182, 122, 0.3);
}
.ab-visual-center i {
  font-size: 3rem;
  color: white;
}
@keyframes ab-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* About Story */
.ab-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-3xl);
  align-items: center;
}
.ab-story-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--rt-space-lg);
  color: var(--rt-gray-900);
}
.ab-story-content p {
  color: var(--rt-gray-600);
  line-height: 1.8;
  margin-bottom: var(--rt-space-md);
}
.ab-quote {
  font-style: italic;
  color: var(--rt-primary);
  border-left: 3px solid var(--rt-primary);
  padding-left: var(--rt-space-lg);
  margin: var(--rt-space-xl) 0;
  font-size: 1.05rem;
}
.ab-story-visual {
  position: relative;
  border-radius: var(--rt-radius-xl);
  overflow: hidden;
}
.ab-story-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--rt-radius-xl);
  background: linear-gradient(135deg, #e8f0fe, #d4e8d9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ab-story-img i {
  font-size: 5rem;
  color: var(--rt-primary);
  opacity: 0.3;
}
.ab-story-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: white;
  border-radius: var(--rt-radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--rt-shadow-xl);
  text-align: center;
}
.ab-badge-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--rt-primary);
  line-height: 1;
}
.ab-story-badge span:last-child {
  font-size: 0.8rem;
  color: var(--rt-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* About Vision/Mission */
.ab-vm-section {
  background: linear-gradient(135deg, #f8faff 0%, #f0faf5 100%);
}
.ab-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-2xl);
}
.ab-vm-card {
  position: relative;
  background: white;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  box-shadow: var(--rt-shadow-md);
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ab-vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rt-shadow-xl);
}
.ab-vm-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}
.ab-vm-vision .ab-vm-glow {
  background: var(--rt-primary);
}
.ab-vm-mission .ab-vm-glow {
  background: var(--rt-secondary);
}
.ab-vm-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--rt-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: var(--rt-space-lg);
}
.ab-vm-vision .ab-vm-icon {
  background: var(--rt-gradient-primary);
}
.ab-vm-mission .ab-vm-icon {
  background: linear-gradient(135deg, var(--rt-secondary), #089e6a);
}
.ab-vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--rt-space-md);
  color: var(--rt-gray-900);
}
.ab-vm-card p {
  color: var(--rt-gray-600);
  line-height: 1.7;
}

/* About Values */
.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
}
.ab-value-card {
  background: white;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  box-shadow: var(--rt-shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.ab-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rt-shadow-lg);
}
.ab-value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--rt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  margin-bottom: var(--rt-space-lg);
}
.ab-val-blue {
  background: var(--rt-gradient-primary);
}
.ab-val-green {
  background: linear-gradient(135deg, var(--rt-secondary), #089e6a);
}
.ab-val-orange {
  background: linear-gradient(135deg, var(--rt-accent), #e05520);
}
.ab-value-card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--rt-space-sm);
  color: var(--rt-gray-900);
}
.ab-value-card p {
  font-size: 0.95rem;
  color: var(--rt-gray-600);
  line-height: 1.6;
}
.ab-value-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.ab-val-blue + h4 ~ p ~ .ab-value-bar,
.ab-value-card:nth-child(3n + 1) .ab-value-bar {
  background: var(--rt-gradient-primary);
}
.ab-value-card:nth-child(3n + 2) .ab-value-bar {
  background: linear-gradient(90deg, var(--rt-secondary), #089e6a);
}
.ab-value-card:nth-child(3n) .ab-value-bar {
  background: linear-gradient(90deg, var(--rt-accent), #e05520);
}

/* About Timeline */
.ab-timeline-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
}
.ab-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.ab-tl-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--rt-primary), var(--rt-secondary));
}
.ab-tl-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: var(--rt-space-2xl);
}
.ab-tl-item:last-child {
  margin-bottom: 0;
}
.ab-tl-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: white;
  border: 3px solid var(--rt-primary);
  border-radius: 50%;
  z-index: 1;
}
.ab-tl-card {
  background: white;
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-xl);
  box-shadow: var(--rt-shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ab-tl-card:hover {
  transform: translateX(5px);
  box-shadow: var(--rt-shadow-md);
}
.ab-tl-year {
  display: inline-block;
  background: rgba(0, 82, 204, 0.08);
  color: var(--rt-primary);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--rt-radius-full);
  margin-bottom: var(--rt-space-sm);
}
.ab-tl-card h4 {
  font-size: 1.1rem;
  color: var(--rt-gray-900);
  margin-bottom: var(--rt-space-xs);
}
.ab-tl-card p {
  font-size: 0.9rem;
  color: var(--rt-gray-600);
  line-height: 1.6;
  margin: 0;
}

/* About Why Choose */
.ab-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--rt-space-xl);
}
.ab-why-item {
  display: flex;
  gap: var(--rt-space-lg);
  align-items: flex-start;
  padding: var(--rt-space-xl);
  background: white;
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ab-why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--rt-shadow-md);
}
.ab-why-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--rt-gradient-primary);
  color: white;
  border-radius: var(--rt-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}
.ab-why-item h4 {
  font-size: 1rem;
  color: var(--rt-gray-900);
  margin-bottom: 0.25rem;
}
.ab-why-item p {
  font-size: 0.9rem;
  color: var(--rt-gray-600);
  line-height: 1.5;
  margin: 0;
}

/* --- Shared Utility: CTA Section --- */
.ab-cta {
  position: relative;
  background: var(--rt-gradient-primary);
  padding: clamp(4rem, 8vh, 7rem) 0;
  overflow: hidden;
}
.ab-cta-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ab-cta-shapes .ab-shape {
  opacity: 0.1;
}
.ab-cta-shapes .ab-shape-1 {
  background: white;
  top: -100px;
  right: -80px;
}
.ab-cta-shapes .ab-shape-2 {
  background: white;
  bottom: -100px;
  left: -60px;
}
.ab-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.ab-cta-inner h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--rt-space-md);
}
.ab-cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: var(--rt-space-2xl);
}

/* About Responsive */
@media (max-width: 992px) {
  .ab-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ab-hero-content p {
    margin: 0 auto;
  }
  .ab-hero-stats {
    justify-content: center;
  }
  .ab-hero-visual {
    height: 300px;
    margin-top: var(--rt-space-xl);
  }
  .ab-story-grid {
    grid-template-columns: 1fr;
  }
  .ab-vm-grid {
    grid-template-columns: 1fr;
  }
  .ab-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ab-hero {
    padding: calc(var(--rt-header-height) + var(--rt-space-2xl)) 0
      var(--rt-space-2xl);
  }
  .ab-hero-stats {
    flex-direction: column;
    gap: var(--rt-space-lg);
  }
  .ab-stat-divider {
    width: 60px;
    height: 1px;
  }
  .ab-values-grid {
    grid-template-columns: 1fr;
  }
  .ab-hero-visual {
    display: none;
  }
  .ab-why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CONTACT PAGE (.ct-*)
   ============================================================ */
.ct-hero {
  position: relative;
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-4xl)) 0
    var(--rt-space-4xl);
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(0, 82, 204, 0.2) 0%,
      transparent 50%
    );
}
.ct-hero .container {
  position: relative;
  z-index: 1;
}
.ct-hero-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.ct-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--rt-space-lg);
  color: var(--rt-white);
}
.ct-hero-inner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Contact Cards */
.ct-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-xl);
  margin-top: calc(-1 * var(--rt-space-3xl));
  position: relative;
  z-index: 2;
}
.ct-card {
  background: white;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  text-align: center;
  box-shadow: var(--rt-shadow-md);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ct-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--rt-shadow-xl);
}
.ct-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--rt-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--rt-space-lg);
  font-size: 1.5rem;
  color: white;
}
.ct-icon-blue {
  background: var(--rt-gradient-primary);
}
.ct-icon-green {
  background: linear-gradient(135deg, var(--rt-secondary), #089e6a);
}
.ct-icon-orange {
  background: linear-gradient(135deg, var(--rt-accent), #e05520);
}
.ct-card h3 {
  font-size: 1.15rem;
  color: var(--rt-gray-900);
  margin-bottom: var(--rt-space-sm);
}
.ct-card p {
  font-size: 0.95rem;
  color: var(--rt-gray-600);
  line-height: 1.6;
}
.ct-card a {
  color: var(--rt-primary);
  text-decoration: none;
  font-weight: 600;
}
.ct-card a:hover {
  text-decoration: underline;
}

/* Contact Form */
.ct-form-section {
  padding: var(--rt-space-3xl) 0;
}
.ct-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-3xl);
  box-shadow: var(--rt-shadow-lg);
}
.ct-form-header {
  text-align: center;
  margin-bottom: var(--rt-space-2xl);
}
.ct-form-header h2 {
  font-size: 1.75rem;
  color: var(--rt-gray-900);
  margin-bottom: var(--rt-space-sm);
}
.ct-form-header p {
  color: var(--rt-gray-500);
}
.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-lg);
}
.ct-form-group {
  display: flex;
  flex-direction: column;
}
.ct-form-group.ct-full {
  grid-column: 1 / -1;
}
.ct-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rt-gray-700);
  margin-bottom: 0.4rem;
}
.ct-form-group input,
.ct-form-group select,
.ct-form-group textarea {
  padding: 0.875rem 1rem;
  border: 1px solid var(--rt-gray-200);
  border-radius: var(--rt-radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  background: #fafbfc;
}
.ct-form-group input:focus,
.ct-form-group select:focus,
.ct-form-group textarea:focus {
  outline: none;
  border-color: var(--rt-primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
  background: white;
}
.ct-form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.ct-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--rt-space-lg);
}

/* Contact Social */
.ct-social-section {
  background: linear-gradient(135deg, #f8faff, #f0faf5);
}
.ct-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rt-space-lg);
}
.ct-social-card {
  background: white;
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-xl);
  text-align: center;
  box-shadow: var(--rt-shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.ct-social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--rt-shadow-md);
}
.ct-social-card i {
  font-size: 2rem;
  color: var(--rt-primary);
  margin-bottom: var(--rt-space-md);
  display: block;
}
.ct-social-card span {
  font-weight: 600;
  color: var(--rt-gray-700);
}

/* Contact Responsive */
@media (max-width: 992px) {
  .ct-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .ct-social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ct-form-grid {
    grid-template-columns: 1fr;
  }
  .ct-form-wrapper {
    padding: var(--rt-space-xl);
  }
  .ct-social-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PRODUCTS PAGE (.pr-*)
   ============================================================ */
.pr-hero {
  position: relative;
  background: var(--rt-gradient-hero);
  padding: calc(var(--rt-header-height) + var(--rt-space-5xl)) 0
    var(--rt-space-5xl);
  overflow: hidden;
  text-align: center;
}
.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 60%,
      rgba(0, 182, 122, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(0, 82, 204, 0.2) 0%,
      transparent 50%
    );
}
.pr-hero .container {
  position: relative;
  z-index: 1;
}
.pr-hero-inner {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.pr-hero-inner h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--rt-space-lg);
  color: var(--rt-white);
}
.pr-hero-inner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* Products Showcase */
.pr-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-2xl);
}
.pr-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--rt-space-2xl);
  align-items: start;
  background: white;
  border-radius: var(--rt-radius-xl);
  padding: var(--rt-space-2xl);
  box-shadow: var(--rt-shadow-sm);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid var(--rt-gray-100);
}
.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rt-shadow-lg);
}
.pr-card-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--rt-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  flex-shrink: 0;
}
.pr-gradient-blue {
  background: var(--rt-gradient-primary);
}
.pr-gradient-green {
  background: linear-gradient(135deg, var(--rt-secondary), #089e6a);
}
.pr-gradient-orange {
  background: linear-gradient(135deg, var(--rt-accent), #e05520);
}
.pr-gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.pr-gradient-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}
.pr-gradient-indigo {
  background: linear-gradient(135deg, #a18cd1, #6366f1);
}
.pr-card-content {
}
.pr-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-primary);
  margin-bottom: 0.25rem;
}
.pr-card-content h3 {
  font-size: 1.4rem;
  color: var(--rt-gray-900);
  margin-bottom: var(--rt-space-sm);
}
.pr-card-content p {
  color: var(--rt-gray-600);
  line-height: 1.7;
  margin-bottom: var(--rt-space-lg);
}
.pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--rt-space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.pr-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--rt-gray-600);
}
.pr-features li i {
  color: var(--rt-secondary);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Products Responsive */
@media (max-width: 768px) {
  .pr-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pr-hero {
    padding: calc(var(--rt-header-height) + var(--rt-space-xl)) 0
      var(--rt-space-xl);
  }
  .pr-card-icon {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .pr-features {
    grid-template-columns: 1fr;
  }
  .pr-hero {
    padding: 5rem 0 3rem;
  }
}

/* ============================================================
   SOLUTIONS PAGE (.sl-*)
   ============================================================ */
.sl-block {
  position: relative;
}
.sl-block-alt {
  background: linear-gradient(135deg, #f8faff 0%, #f0faf5 100%);
}
.sl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--rt-space-3xl);
  align-items: center;
}
.sl-grid-reverse {
  direction: rtl;
}
.sl-grid-reverse > * {
  direction: ltr;
}
.sl-content .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-secondary);
  margin-bottom: var(--rt-space-sm);
}
.sl-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--rt-gray-900);
  margin-bottom: var(--rt-space-md);
}
.sl-content p {
  color: var(--rt-gray-600);
  line-height: 1.7;
  margin-bottom: var(--rt-space-xl);
}
.sl-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--rt-space-xl);
}
.sl-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--rt-gray-600);
}
.sl-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 182, 122, 0.1);
  color: var(--rt-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.sl-visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--rt-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--rt-shadow-lg);
}
.sl-gradient-blue {
  background: var(--rt-gradient-primary);
}
.sl-gradient-green {
  background: linear-gradient(135deg, var(--rt-secondary), #089e6a);
}
.sl-gradient-purple {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}
.sl-gradient-orange {
  background: linear-gradient(135deg, var(--rt-accent), #e05520);
}
.sl-gradient-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

/* Solutions Responsive */
@media (max-width: 992px) {
  .sl-grid {
    grid-template-columns: 1fr;
  }
  .sl-grid-reverse {
    direction: ltr;
  }
  .sl-visual-placeholder {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================================
   TESTIMONIALS PAGE (.tm-*)
   ============================================================ */
.tm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--rt-space-xl);
}
.tm-stat {
  text-align: center;
  padding: var(--rt-space-xl);
  background: white;
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-sm);
}
.tm-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--rt-primary);
}
.tm-stat-label {
  font-size: 0.85rem;
  color: var(--rt-gray-500);
}

/* ============================================================
   SKIZA TONES PAGE (.skt-*)
   ============================================================ */
.skt-badges {
  display: flex;
  gap: var(--rt-space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--rt-space-xl);
}
.skt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.skt-badge i {
  color: var(--rt-secondary);
}

/* ============================================================
   NEWSLETTER FORM (shared utility)
   ============================================================ */
.newsletter-form {
  display: flex;
  gap: var(--rt-space-md);
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type='email'] {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border-radius: var(--rt-radius-full);
  border: none;
  font-size: 1rem;
}
.newsletter-form input[type='email']:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ============================================================
   RESPONSIVE: Shared hero for smaller pages
   ============================================================ */
@media (max-width: 768px) {
  .pr-hero-inner h1 {
    font-size: 1.75rem;
  }
  .pr-hero-inner p {
    font-size: 1rem;
  }
  .ct-hero-inner h1 {
    font-size: 1.75rem;
  }
  .pr-hero {
    padding: calc(var(--rt-header-height) + var(--rt-space-2xl)) 0
      var(--rt-space-2xl);
  }
  .ct-hero {
    padding: calc(var(--rt-header-height) + var(--rt-space-2xl)) 0
      var(--rt-space-2xl);
  }
}

/* ==========================================================================
   PRIVACY POLICY PAGE
   ========================================================================== */
.pp-content {
  padding: var(--rt-space-3xl) 0;
  background: var(--rt-gray-50);
}
.pp-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--rt-space-2xl);
  align-items: start;
}

/* Table of Contents */
.pp-toc {
  position: sticky;
  top: calc(var(--rt-header-height) + var(--rt-space-lg));
  background: #fff;
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-lg);
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
}
.pp-toc h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rt-dark);
  margin-bottom: var(--rt-space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pp-toc h4 i {
  color: var(--rt-primary);
}
.pp-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pp-toc ul li {
  margin-bottom: 0.25rem;
}
.pp-toc ul li a {
  display: block;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: var(--rt-gray-600);
  border-radius: var(--rt-radius-sm);
  transition: var(--rt-transition-fast);
  font-weight: 500;
}
.pp-toc ul li a:hover {
  background: rgba(0, 82, 204, 0.06);
  color: var(--rt-primary);
}

/* Policy Body */
.pp-body {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-xl);
}
.pp-section {
  background: #fff;
  border-radius: var(--rt-radius-lg);
  padding: var(--rt-space-2xl);
  box-shadow: var(--rt-shadow-sm);
  border: 1px solid var(--rt-gray-200);
  position: relative;
}
.pp-section-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rt-primary), var(--rt-secondary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: var(--rt-space-md);
}
.pp-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rt-dark);
  margin-bottom: var(--rt-space-md);
}
.pp-section p {
  color: var(--rt-gray-600);
  line-height: 1.8;
  margin-bottom: var(--rt-space-md);
}
.pp-section p:last-child {
  margin-bottom: 0;
}
.pp-section a {
  color: var(--rt-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pp-section a:hover {
  color: var(--rt-secondary);
}

/* Bullet list */
.pp-list {
  list-style: none;
  padding: 0;
  margin: var(--rt-space-md) 0 0;
}
.pp-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--rt-gray-600);
  line-height: 1.7;
}
.pp-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--rt-secondary);
  font-size: 0.75rem;
}

/* Highlight callout */
.pp-highlight {
  display: flex;
  gap: var(--rt-space-md);
  padding: var(--rt-space-lg);
  border-radius: var(--rt-radius-md);
  background: rgba(0, 82, 204, 0.04);
  border-left: 4px solid var(--rt-primary);
  margin: var(--rt-space-lg) 0;
}
.pp-highlight > i {
  color: var(--rt-primary);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.pp-highlight strong {
  display: block;
  color: var(--rt-dark);
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.pp-highlight p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Rights grid */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-md);
  margin-top: var(--rt-space-lg);
}
.pp-right-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: var(--rt-space-lg);
  border-radius: var(--rt-radius-md);
  background: var(--rt-gray-50);
  border: 1px solid var(--rt-gray-200);
  transition: var(--rt-transition-fast);
}
.pp-right-card:hover {
  border-color: var(--rt-primary);
  box-shadow: 0 4px 16px rgba(0, 82, 204, 0.08);
}
.pp-right-card i {
  font-size: 1.25rem;
  color: var(--rt-primary);
}
.pp-right-card strong {
  font-size: 0.95rem;
  color: var(--rt-dark);
}
.pp-right-card span {
  font-size: 0.85rem;
  color: var(--rt-gray-500);
  line-height: 1.5;
}

/* Contact cards */
.pp-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--rt-space-md);
  margin-top: var(--rt-space-lg);
}
.pp-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--rt-space-xl);
  border-radius: var(--rt-radius-md);
  background: var(--rt-gray-50);
  border: 1px solid var(--rt-gray-200);
  text-align: center;
}
.pp-contact-card i {
  font-size: 1.5rem;
  color: var(--rt-primary);
}
.pp-contact-card strong {
  font-size: 0.85rem;
  color: var(--rt-dark);
}
.pp-contact-card a,
.pp-contact-card span {
  font-size: 0.85rem;
  color: var(--rt-gray-600);
}
.pp-contact-card a:hover {
  color: var(--rt-primary);
}

/* Last updated */
.pp-updated {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--rt-space-md) var(--rt-space-lg);
  background: #fff;
  border-radius: var(--rt-radius-md);
  border: 1px solid var(--rt-gray-200);
  font-size: 0.85rem;
  color: var(--rt-gray-500);
}
.pp-updated i {
  color: var(--rt-gray-400);
}

/* Responsive */
@media (max-width: 768px) {
  .pp-wrapper {
    grid-template-columns: 1fr;
  }
  .pp-toc {
    position: static;
  }
  .pp-rights-grid {
    grid-template-columns: 1fr;
  }
  .pp-contact-cards {
    grid-template-columns: 1fr;
  }
}
