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

:root {
  --primary: #C0202D; /* Rich Crimson Red */
  --primary-hover: #A01020;
  --primary-light: #FDECEA;
  --secondary: #00C6FF; /* Bright Cyan */
  --accent: #FFD500; /* Bright Yellow */

  --bg-color: #FFFFFF; /* Clean white background */
  --bg-secondary: #F8FAFC; /* Very light cool gray */
  --bg-tertiary: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #475569;
  --border-color: #E2E8F0;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-primary: linear-gradient(to right, #C0202D, #E63946);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
}

/* ══════════ RESET ══════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1rem;
}
p { margin-bottom: 1.5rem; color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--primary-hover); }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ══════════ UTILITIES ══════════ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-light { background-color: var(--bg-color); }
.section-gray { background-color: var(--bg-secondary); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.fw-medium { font-weight: 500; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 1.5rem; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }

/* ══════════ BUTTONS ══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 14px rgba(192, 32, 45, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 32, 45, 0.45);
  color: white;
}
.btn-outline-hero {
  background: white;
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.btn-outline-hero:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-ghost { background: transparent; color: var(--text-main); }
.btn-ghost:hover { background: var(--bg-tertiary); }

/* ══════════ BADGES ══════════ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: var(--primary-light);
  color: var(--primary);
}

/* ══════════ CARDS ══════════ */
.card {
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.card-icon {
  background: var(--primary-light);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.card-icon--accent {
  background: var(--primary);
  color: white;
}
.card-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border: 2px dashed rgba(192, 32, 45, 0.3);
  cursor: pointer;
  text-align: center;
  gap: 1rem;
}
.card-cta:hover {
  background: rgba(192, 32, 45, 0.08);
  border-color: var(--primary);
}

/* ══════════ HEADER ══════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(192, 32, 45, 0.04); /* Very light shade of theme color */
  backdrop-filter: none; /* No glass initially as per image */
  -webkit-backdrop-filter: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(192, 32, 45, 0.08);
  border-radius: 0; /* sharp edges */
  transform: translateY(-100%); /* start hidden */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.header.is-visible {
  transform: translateY(0);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
/* ══════════ PREMIUM NAVBAR ══════════ */
.premium-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: fit-content;
  margin: 0;
  gap: 0.5rem;
}

.premium-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}

.nav-bubble {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.nav-bubble.active {
  opacity: 1;
}

.premium-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  transition: color 0.2s ease;
  position: relative;
  z-index: 1;
}

.premium-nav-item:hover {
  background: transparent;
  color: var(--text-main);
}

.premium-nav-item.active {
  background: transparent;
  color: var(--text-main);
}

.premium-nav-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-nav-item.dropdown {
  position: relative;
  cursor: pointer;
}

.premium-nav-item.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 30px;
  background: transparent;
}

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

.premium-nav-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
  margin: 0 0.5rem;
}

.premium-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.premium-nav-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  white-space: nowrap;
}

.premium-nav-contact::before {
  content: '';
  display: block;
  width: 0;
  height: 6px;
  background-color: #0F172A;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  margin-right: 0;
}

.premium-nav-contact:hover {
  background-color: #E2E8F0;
  color: #0284C7;
  padding: 0.5rem 1.25rem;
}

.premium-nav-contact:hover::before {
  width: 6px;
  opacity: 1;
  margin-right: 8px;
}

.premium-nav-btn {
  background: var(--text-main);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.premium-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  opacity: 0.9;
}
.nav-actions { display: flex; gap: 1rem; align-items: center; }
.nav-cta {
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
}

/* ══════════ HERO SECTION ══════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
  background: linear-gradient(135deg, #020617 0%, #1e293b 50%, #64748b 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

/* ── Gradient blend into the next section ── */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-secondary));
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Background blobs */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.hero-blob--1 {
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: radial-gradient(circle, rgba(192, 32, 45, 0.18) 0%, transparent 70%);
  animation: blob-drift 20s ease-in-out infinite;
}
.hero-blob--2 {
  width: 400px; height: 400px;
  bottom: -5%; left: 20%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.2) 0%, transparent 70%);
  animation: blob-drift 25s ease-in-out infinite reverse;
}
.hero-blob--3 {
  width: 200px; height: 200px;
  top: 50%; right: 30%;
  background: radial-gradient(circle, rgba(192, 32, 45, 0.2) 0%, transparent 70%);
  animation: blob-drift 18s ease-in-out infinite 3s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Dashed arcs */
.hero-arcs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-arcs path {
  animation: arc-flow 40s linear infinite;
}

@keyframes arc-flow {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

/* Floating dots */
.hero-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(192, 32, 45, 0.4);
  animation: dot-float 6s ease-in-out infinite;
}
.hero-dot--1 { top: 15%; right: 25%; animation-delay: 0s; }
.hero-dot--2 { top: 70%; right: 15%; animation-delay: 1.5s; width: 6px; height: 6px; }
.hero-dot--3 { top: 30%; right: 45%; animation-delay: 3s; width: 10px; height: 10px; opacity: 0.3; }
.hero-dot--4 { top: 80%; right: 50%; animation-delay: 4s; width: 5px; height: 5px; }

@keyframes dot-float {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

/* Hero text */
.hero-text { position: relative; z-index: 10; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(192, 32, 45, 0.1);
  border: 1px solid rgba(192, 32, 45, 0.2);
  color: var(--primary);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 4.25rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.hero-title--accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-btn-primary {
  position: relative;
  overflow: hidden;
}
.hero-btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.hero-btn-primary:hover::after {
  width: 300px;
  height: 300px;
}

/* Hero visual / mockup */
.hero-visual {
  position: relative;
  min-height: 420px;
}

/* Mock cards */
.main-mock-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-color);
  width: 100%;
  height: 380px;
  position: absolute;
  top: 0;
  left: 20px;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: card-float 8s ease-in-out infinite;
}

.mock-header {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
}

.recording-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mock-filename {
  font-weight: 700;
  font-size: 1.05rem;
  color: #0f172a;
}

.mock-dot {
  width: 6px;
  height: 6px;
  background-color: #0ea5e9;
  border-radius: 50%;
}

.mock-status-text {
  font-size: 0.95rem;
  color: #C0202D;
  font-weight: 500;
}

.huge-mic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.huge-mic-wrapper svg {
  width: 180px;
  height: 180px;
  opacity: 0.95;
}

.mock-mini-wave {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mini-bar {
  width: 8px;
  height: 16px;
  background-color: #C0202D;
  border-radius: 4px;
  animation: wave-bar 1s ease-in-out infinite alternate;
}
.mini-bar:nth-child(2) {
  height: 10px;
  animation-delay: 0.2s;
}

/* Floating elements */
.float-badge {
  position: absolute;
  z-index: 20;
  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-txt {
  top: -15px;
  right: -15px;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  animation: float-bounce 5s ease-in-out infinite;
}

.badge-pink {
  background: #C0202D;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 1px;
}

.float-mic-circle {
  bottom: 30px;
  left: -20px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  animation: float-bounce 6s ease-in-out infinite 1s;
}

.float-mic-circle svg {
  width: 32px;
  height: 32px;
}

.float-transcript {
  bottom: -25px;
  right: 15px;
  left: 50px;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: float-bounce 7s ease-in-out infinite 2s;
  justify-content: flex-start;
}

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

@keyframes wave-bar {
  0% { height: 8px; }
  100% { height: 18px; }
}

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

@keyframes float-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  75% { transform: translateY(4px) rotate(-1deg); }
}

/* Slide-in animations */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slide-left 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slide-right 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes slide-left {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slide-right {
  to { opacity: 1; transform: translateX(0); }
}

/* Fade-up for scroll elements */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════ TRUSTED BY ══════════ */
.trusted-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 2rem;
}
.trusted-logos-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 4rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
  animation: marquee 25s linear infinite;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.trusted-logos-wrapper:hover .trusted-logos {
  filter: grayscale(0%);
  opacity: 1;
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 4rem)); }
}
.trusted-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #5F6368;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══════════ PREMIUM SERVICES SECTION ══════════ */
.section-premium-services {
  background: #0B0F19;
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.section-premium-services::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,32,45,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section-premium-services::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,32,45,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.premium-services-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-services-header p {
  color: #94A3B8;
  font-size: 1.15rem;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .premium-grid { grid-template-columns: 1fr; }
}
.premium-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.premium-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.premium-card:hover {
  transform: translateY(-8px);
  border-color: rgba(192,32,45,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(192,32,45,0.1);
}
.premium-card:hover::before {
  opacity: 1;
}
.premium-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}
.premium-card-icon svg {
  width: 28px;
  height: 28px;
}
.premium-card:nth-child(1) .premium-card-icon { color: #C0202D; background: rgba(192,32,45,0.1); }
.premium-card:nth-child(2) .premium-card-icon { color: #E63946; background: rgba(230,57,70,0.1); }
.premium-card:nth-child(3) .premium-card-icon { color: #10b981; background: rgba(16,185,129,0.1); }
.premium-card:nth-child(4) .premium-card-icon { color: #f59e0b; background: rgba(245,158,11,0.1); }
.premium-card:nth-child(5) .premium-card-icon { color: #A01020; background: rgba(160,16,32,0.1); }
.premium-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(192,32,45,0.1) 0%, rgba(230,57,70,0.1) 100%);
  border: 1px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.premium-card:nth-child(6):hover {
  border-style: solid;
  border-color: rgba(192,32,45,0.5);
}
.premium-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
  position: relative;
  z-index: 2;
}
.premium-card p {
  color: #94A3B8;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  position: relative;
  z-index: 2;
  flex: 1;
}

/* ══════════ HOW IT WORKS SECTION ══════════ */
.section-how-it-works {
  background: var(--bg-secondary);
  color: var(--text-main);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.section-how-it-works::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,32,45,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section-how-it-works::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,32,45,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.how-it-works-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.how-it-works-header .subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .steps-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; }
}

.step-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: white;
  border-color: rgba(192, 32, 45, 0.2);
}
.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-display);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(192,32,45,0.1) 0%, rgba(230,57,70,0.1) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(192,32,45,0.1);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ══════════ FOOTER ══════════ */
.footer {
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--primary-light) 100%);
  color: white;
  padding: 4rem 0 2rem;
  border-top: 2px solid rgba(192, 32, 45, 0.15);
}
.footer p { color: #94A3B8; }
.footer h4 { color: white; margin-bottom: 1.5rem; font-weight: 700; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer .footer-grid > div:first-child > a {
  background: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 1.25rem;
  border-radius: 12px;
  display: inline-flex !important;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.footer .footer-grid > div:first-child > a:hover {
  transform: translateY(-2px);
}
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #94A3B8; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94A3B8;
  font-size: 0.875rem;
}
.footer-social {
  color: #94A3B8;
  transition: color 0.2s;
}
.footer-social:hover {
  color: var(--primary);
}

/* ══════════ DROPDOWN ══════════ */
.nav-item.dropdown, .pill-item.dropdown { position: relative; display: flex; align-items: center; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-color);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  z-index: 200;
  padding: 0.5rem 0;
}
.nav-item.dropdown:hover .dropdown-menu,
.pill-item.dropdown:hover .dropdown-menu {
  display: block;
  animation: menu-fade 0.2s ease-out;
}
.dropdown-item {
  color: var(--text-main);
  padding: 0.75rem 1.5rem;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--primary);
}

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

/* ══════════ HOW IT WORKS ══════════ */
.how-it-works {
  padding: 5rem 0;
  background: var(--bg-color);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.2;
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 30px rgba(192, 32, 45, 0.3);
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(192, 32, 45, 0.25);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.step-card p {
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}

/* ══════════ PRICING ══════════ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.pricing-toggle span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-toggle span.active {
  color: var(--text-main);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--bg-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.pricing-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 40px rgba(192, 32, 45, 0.15);
  transform: scale(1.04);
}
.pricing-card--featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}
.pricing-badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 2.5rem;
  letter-spacing: 0.05em;
  transform: rotate(35deg);
}
.pricing-tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.925rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-color);
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features li svg {
  flex-shrink: 0;
  color: var(--secondary);
}
.pricing-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}
.pricing-features li.disabled svg {
  color: var(--text-muted);
}
.pricing-card .btn {
  width: 100%;
}

/* ══════════ CONTACT FORM ══════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-card:last-child {
  border-bottom: none;
}
.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.contact-info-card p {
  margin: 0;
  font-size: 0.9rem;
}
.contact-form {
  background: var(--bg-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: white;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 32, 45, 0.1);
  background: var(--bg-color);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ══════════ PAGE HERO BANNER ══════════ */
.page-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #FBFCFE 0%, #FFF0F0 50%, #FFE5E5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 32, 45, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
}
.page-hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .mobile-menu-btn { display: block; }

  .hero-section { padding: 3rem 0; min-height: auto; }
  .hero-container { grid-template-columns: 1fr !important; gap: 3rem; }
  .hero-title { font-size: 2.75rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-visual { min-height: 320px; }
  .mock-card--recording { left: 0; right: 10px; }
  .mock-card--transcript { left: 10px; right: 0; bottom: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid::before { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero { padding: 3rem 0 2rem; }
  .page-hero h1 { font-size: 2.25rem; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ══════════ INTEGRATIONS SECTION ══════════ */
.section-integrations {
  background: white;
  overflow: hidden;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }
}
.integration-content {
  max-width: 480px;
}
.integration-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.integration-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.integration-content a {
  color: var(--primary);
  font-weight: 500;
}
.integration-content a:hover {
  text-decoration: underline;
}
.integration-visual {
  position: relative;
  height: auto;
  width: 100%;
}
.integration-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  z-index: 0;
}
.integration-lines .line {
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.05) 50%);
  background-size: 1px 12px;
}
.integration-nodes {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* Transcription Mockup Styles */
.transcription-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.mockup-header {
  background: var(--bg-tertiary);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 6px;
  margin-right: 1rem;
}
.window-controls .control {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.window-controls .close { background: #FF5F56; }
.window-controls .minimize { background: #FFBD2E; }
.window-controls .maximize { background: #27C93F; }

.mockup-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mockup-body {
  padding: 1.5rem;
  background: white;
}

.mockup-audio-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.play-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(192, 32, 45, 0.3);
}

.waveform-container {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  height: 36px;
}
.wave-bar {
  flex: 1;
  background: #E2E8F0;
  border-radius: 99px;
  transition: height 0.15s ease, background 0.2s;
}
.wave-bar.active {
  background: linear-gradient(to top, var(--primary), #ff6b8b);
}

.mockup-audio-player .time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mockup-transcript {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transcript-line {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.transcript-line .speaker {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.transcript-line .speaker-2 {
  color: #95BF47;
}
.transcript-line .timestamp {
  font-weight: 500;
  color: #94A3B8;
}

.transcript-line .text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.5;
}

.transcript-line.active-line .text {
  background: var(--primary-light);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink 0.8s step-end infinite;
}

/* ═══════════════════════════════════════════ */
/* INDUSTRY SOLUTIONS SECTION                    */
/* ═══════════════════════════════════════════ */
.section-industry {
  background: #fdfdfd;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 10;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(0,0,0,0.08);
}

.industry-card:hover::before {
  opacity: 1;
  background: var(--industry-color);
  opacity: 0.03;
}

.industry-card .card-dot {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--industry-color);
  border-radius: 50%;
  opacity: 0.05;
  transition: all 0.6s ease;
  z-index: -1;
}

.industry-card:hover .card-dot {
  transform: scale(2.5);
  opacity: 0.08;
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--industry-color);
  transition: all 0.4s ease;
}

.card-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.industry-card:hover .card-icon-wrapper {
  background: var(--industry-color);
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.industry-card:hover h3 {
  color: var(--industry-color);
}

.industry-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.industry-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.industry-card .learn-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--industry-color);
  transition: width 0.3s ease;
}

.industry-card:hover .learn-more {
  color: var(--industry-color);
}

.industry-card:hover .learn-more::after {
  width: 100%;
}

.industry-card .learn-more svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.industry-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* Premium Dropdown Styles */
.dropdown-trigger {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-color);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  z-index: 200;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.dropdown-item {
  color: var(--text-main);
  padding: 0.6rem 1.5rem;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s, color 0.2s;
  text-decoration: none;
}

.dropdown-item:hover {
  background-color: var(--bg-tertiary);
  color: var(--primary);
}

/* About Us Section Contact Button */
.about-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  white-space: nowrap;
}


.about-contact-btn .btn-arrow {
  width: 0;
  height: 18px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: 0;
  overflow: hidden;
}

.about-contact-btn:hover .btn-arrow {
  width: 18px;
  opacity: 1;
  margin-right: 6px;
}


.about-contact-btn:hover {
  background-color: rgba(192, 32, 45, 0.1);
  color: #C0202D;
  padding: 0.5rem 1.25rem;
}



/* Glitter Border for About Contact Button */
.about-contact-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  padding: 2px;
  background: linear-gradient(90deg, #C0202D, #FFD700, #FFF, #C0202D, #FFD700, #C0202D);
  background-size: 200% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glitter-border 2.5s linear infinite;
  pointer-events: none;
}

@keyframes glitter-border {
  to {
    background-position: 200% center;
  }
}

.about-contact-btn:hover::after {
  /* Make glitter border glow slightly on hover */
  filter: drop-shadow(0 0 8px rgba(192, 32, 45, 0.6));
}

/* ═══════════════════════════════════════════ */
/* HERO AUDIO-TO-TEXT CARD                     */
/* ═══════════════════════════════════════════ */
.audio-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 8px 24px rgba(192, 32, 45, 0.08);
  border: 1px solid rgba(255,255,255,0.6);
  position: relative;
  z-index: 2;
}

.audio-card__topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F1F5F9;
}

.audio-card__dots {
  display: flex;
  gap: 5px;
}

.audio-card__dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: block;
}

.audio-card__title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  letter-spacing: 0.02em;
}

/* Waveform */
.audio-card__waveform {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.audio-card__waveform-bars {
  display: flex;
  align-items: center;
  gap: 2.5px;
  height: 48px;
  flex: 1;
}

.audio-card__waveform-bars .wbar {
  flex: 1;
  border-radius: 3px;
  background: linear-gradient(to top, #C0202D, #FF8C8C);
  animation: waveBounce 0.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes waveBounce {
  0%   { transform: scaleY(0.2); opacity: 0.4; }
  100% { transform: scaleY(1);   opacity: 1; }
}

.audio-card__time {
  font-size: 0.8rem;
  font-weight: 600;
  color: #94A3B8;
  white-space: nowrap;
}

/* Transcript */
.audio-card__transcript {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.audio-card__line {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0.4rem 0.6rem;
  align-items: baseline;
}

.audio-card__line p {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.5;
  margin: 0;
  padding-left: 0;
}

.audio-card__speaker {
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 1px 8px;
  letter-spacing: 0.03em;
}

.audio-card__speaker.s1 {
  background: rgba(99,102,241,0.12);
  color: #6366F1;
}

.audio-card__speaker.s2 {
  background: rgba(192, 32, 45, 0.12);
  color: #C0202D;
}

.audio-card__ts {
  font-size: 0.7rem;
  color: #94A3B8;
  font-weight: 500;
}

.typing-line p {
  color: #0F172A;
  font-weight: 500;
}

.hero-cursor {
  display: inline-block;
  color: #C0202D;
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Status Bar */
.audio-card__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #64748B;
  padding-top: 0.75rem;
  border-top: 1px solid #F1F5F9;
  font-weight: 500;
}

.audio-card__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28C840;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,200,64,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(40,200,64,0); }
}

.audio-card__badge {
  margin-left: auto;
  background: linear-gradient(135deg, #C0202D, #FF8C8C);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════ */
/* MIC PULSE SCENE                             */
/* ═══════════════════════════════════════════ */
.mic-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 420px;
}

/* Expanding ripple rings */
.mic-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(192, 32, 45, 0.3);
  animation: micRipple 3s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
  pointer-events: none;
}
.mic-ring--1 { width: 120px; height: 120px; animation-delay: 0s; }
.mic-ring--2 { width: 200px; height: 200px; animation-delay: 0.7s; }
.mic-ring--3 { width: 290px; height: 290px; animation-delay: 1.4s; }
.mic-ring--4 { width: 380px; height: 380px; animation-delay: 2.1s; }

@keyframes micRipple {
  0%   { transform: scale(0.6); opacity: 0.8; border-color: rgba(192, 32, 45, 0.5); }
  60%  { opacity: 0.3; }
  100% { transform: scale(1.15); opacity: 0; border-color: rgba(192, 32, 45, 0); }
}

/* Central glowing mic button */
.mic-btn {
  position: relative;
  z-index: 5;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C0202D, #801015);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(192, 32, 45, 0.15), 0 0 40px rgba(192, 32, 45, 0.35);
  animation: micGlow 2s ease-in-out infinite alternate;
  flex-shrink: 0;
}

@keyframes micGlow {
  from { box-shadow: 0 0 0 10px rgba(192, 32, 45, 0.15), 0 0 30px rgba(192, 32, 45, 0.3); }
  to   { box-shadow: 0 0 0 18px rgba(192, 32, 45, 0.1), 0 0 60px rgba(192, 32, 45, 0.5); }
}

/* Floating transcribed words container */
.mic-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

/* Each floating word chip */
.mic-word-chip {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(192, 32, 45, 0.2);
  color: #1E293B;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  white-space: nowrap;
  animation: chipFloat 3.5s ease-out forwards;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@keyframes chipFloat {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  15%  { opacity: 1; transform: translateY(-20px) scale(1); }
  70%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.95); }
}

/* Live label */
.mic-label {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  z-index: 6;
}

.mic-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28C840;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════ */
/* SUB-PAGE HERO (CEO / Mission / Terms etc)  */
/* ═══════════════════════════════════════════ */
.sub-page-hero {
  padding: 7rem 0 4rem;
  background: var(--hero-bg, linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #2D1F3D 100%));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(192, 32, 45, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.sub-page-hero__content {
  position: relative;
  z-index: 1;
}

.sub-page-hero__tag {
  display: inline-block;
  background: rgba(192, 32, 45, 0.15);
  color: #C0202D;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(192, 32, 45, 0.3);
  margin-bottom: 1.25rem;
}

.sub-page-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.sub-page-hero__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════ */
/* CEO PAGE                                    */
/* ═══════════════════════════════════════════ */
.ceo-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .ceo-profile { grid-template-columns: 1fr; }
}

.ceo-profile__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ceo-avatar-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid rgba(192, 32, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
  box-shadow: 0 10px 40px rgba(192, 32, 45, 0.15);
}

.ceo-avatar-badge {
  background: linear-gradient(135deg, #C0202D, #801015);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.ceo-profile__info h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin: 0 0 0.5rem;
}

.ceo-tagline {
  font-size: 1.1rem;
  color: #C0202D;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.ceo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

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

.ceo-stat {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.ceo-stat__num {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #C0202D;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.ceo-stat__label {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
}

.ceo-vision {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  border-radius: 20px;
  padding: 3rem;
  color: #fff;
}

.ceo-vision h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 1.5rem;
  color: #fff;
}

.ceo-vision blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  border-left: 3px solid #C0202D;
  padding-left: 1.5rem;
  margin: 0 0 1rem;
  font-style: italic;
}

.ceo-vision cite {
  color: #C0202D;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════ */
/* MISSION & VISION PAGE                       */
/* ═══════════════════════════════════════════ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

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

.mv-card {
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2.5rem;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.mv-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text-main);
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mv-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: #64748B;
  font-weight: 500;
}

.mv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C0202D;
  font-weight: 800;
}

.mv-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.mv-value-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mv-value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(192, 32, 45, 0.12);
}

.mv-value-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0.75rem 0 0.5rem;
}

.mv-value-item p {
  font-size: 0.85rem;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════ */
/* TERMS PAGE                                  */
/* ═══════════════════════════════════════════ */
.terms-body {
  max-width: 780px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #F1F5F9;
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 1rem;
}

.terms-section p {
  color: #475569;
  line-height: 1.8;
  margin: 0 0 0.75rem;
}

/* ═══════════════════════════════════════════ */
/* TESTIMONIALS PAGE                           */
/* ═══════════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.testi-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(192, 32, 45, 0.12);
}

.testi-stars {
  color: #F59E0B;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testi-card > p {
  color: #475569;
  line-height: 1.75;
  font-size: 0.92rem;
  flex: 1;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #F1F5F9;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
}

.testi-author span {
  font-size: 0.75rem;
  color: #64748B;
}

/* ═══════════════════════════════════════════════════════ */
/* PREMIUM GLOBAL SECTION BACKGROUNDS                       */
/* ═══════════════════════════════════════════════════════ */

/* Override flat backgrounds with premium layered ones */
.section-light {
  background: #ffffff;
  position: relative;
}

.section-gray {
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  position: relative;
}

/* ── Subtle mesh/dot grid overlay on every section ── */
.section::after,
.section-light::after,
.section-gray::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(15,23,42,0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.section > .container,
.section-light > .container,
.section-gray > .container {
  position: relative;
  z-index: 1;
}

/* ── Industry Solutions ── */
.section-industry {
  background:
    radial-gradient(ellipse 80% 50% at 20% 30%, rgba(192, 32, 45, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(99,102,241,0.05) 0%, transparent 60%),
    linear-gradient(160deg, #F8FAFC 0%, #FFFFFF 50%, #F0F4FF 100%);
  position: relative;
}

/* ── Integrations / About Us ── */
.section-integrations {
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(192, 32, 45, 0.07) 0%, transparent 60%),
    linear-gradient(135deg, #FFFFFF 0%, #FEF2F2 60%, #FFF7F0 100%);
  position: relative;
}

/* ── How It Works ── */
.section-how-it-works {
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(99,102,241,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  position: relative;
}

/* ── Pricing Section ── */
.section-light#pricing {
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(192, 32, 45, 0.05) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FEF9FF 100%);
  position: relative;
}

/* ── Testimonials (if on index) ── */
.section-testimonials {
  background:
    radial-gradient(ellipse 90% 60% at 10% 50%, rgba(99,102,241,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 90% 50%, rgba(192, 32, 45, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #F8FAFC 0%, #F0F4FF 100%);
  position: relative;
}

/* ── CTA / Final Banner ── */
.section-cta {
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(192, 32, 45, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #0F172A 0%, #1E293B 60%, #2D1F3D 100%);
  position: relative;
}

/* ── Footer ── */
.footer {
  background:
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(192, 32, 45, 0.06) 0%, transparent 50%),
    linear-gradient(160deg, #0B1120 0%, #0F172A 50%, #1A1035 100%) !important;
}

/* ── Sub-page sections ── */
.section.section-light {
  background:
    radial-gradient(ellipse 60% 60% at 90% 10%, rgba(192, 32, 45, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(99,102,241,0.04) 0%, transparent 50%),
    #ffffff;
}

/* ── Services / Pricing page plain gray ── */
.section.section-gray {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(192, 32, 45, 0.04) 0%, transparent 60%),
    linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
}

/* ── Floating top-right accent blob on alternating sections ── */
.section-industry::before,
.section-how-it-works::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 32, 45, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 0;
}

.section-integrations::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.07) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
  pointer-events: none;
  z-index: 0;
}

/* Testimonials / CEO / Mission page cards get a glass shimmer */
.testi-card,
.mv-card,
.industry-card,
.step-card {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9) !important;
}

/* Make section-light on sub-pages slightly warmer */
body:has(.sub-page-hero) .section-light {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(192, 32, 45, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(99,102,241,0.03) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #FAFBFF 100%);
}

/* ── Pricing cards glass treatment ── */
.pricing-card {
  background: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* ══════════ MODAL / POPUP ══════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

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

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 95vh;
  overflow-y: hidden; /* Remove scrollbar */
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.modal-close:hover {
  color: #0F172A;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 1rem;
}

.modal-logo {
  height: 60px;
  margin: 0 auto 0.5rem;
  display: block;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-input-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 0.5rem;
}

.modal-input-group .required {
  color: #EF4444;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper.align-top {
  align-items: flex-start;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #94A3B8;
  pointer-events: none;
}

.textarea-icon {
  top: 1rem;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  border: 1.5px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #0F172A;
  background: #ffffff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  border-color: #C0202D;
  box-shadow: 0 0 0 3px rgba(192, 32, 45, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #94A3B8;
}

.input-wrapper textarea {
  resize: none; /* Prevent manual resize that causes scrolling */
  min-height: 80px;
}

.modal-submit-btn {
  background: transparent;
  color: var(--primary);
  border: none;
  border-radius: 8px;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.25rem;
  position: relative;
}

/* Glitter Border for Modal Button */
.modal-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 2px;
  background: linear-gradient(90deg, #C0202D, #FFD700, #FFF, #C0202D, #FFD700, #C0202D);
  background-size: 200% auto;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glitter-border 2.5s linear infinite;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-submit-btn svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-submit-btn:hover {
  background: var(--gradient-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 32, 45, 0.35);
}

.modal-submit-btn:hover::after {
  opacity: 0; /* Hide glitter when filled with gradient */
}

.modal-submit-btn:hover svg {
  transform: translateX(4px) translateY(-4px) scale(1.1);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

.modal-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #64748B;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ══════════ FLOATING ACTION BUTTONS ══════════ */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 9999;
}

.fab-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.fab-btn.call-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.fab-btn.whatsapp-btn {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.fab-btn svg {
  width: 26px;
  height: 26px;
  z-index: 2;
  stroke-width: 2px;
}

.fab-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.fab-btn.call-btn:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.fab-btn.whatsapp-btn:hover {
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
}

/* Ripple Animations */
.fab-btn::before,
.fab-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: fab-ripple 2.5s infinite cubic-bezier(0.15, 0.85, 0.35, 1);
  pointer-events: none;
}

.fab-btn.call-btn::before, .fab-btn.call-btn::after {
  border: 2px solid rgba(16, 185, 129, 0.5);
}

.fab-btn.whatsapp-btn::before, .fab-btn.whatsapp-btn::after {
  border: 2px solid rgba(34, 197, 94, 0.5);
}

.fab-btn::after {
  animation-delay: 1.25s;
}

@keyframes fab-ripple {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
    border-width: 2px;
  }
  100% {
    width: 220%;
    height: 220%;
    opacity: 0;
    border-width: 0px;
  }
}

/* ══════════ CEO ABOUT PAGE ══════════ */
.ceo-about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

/* LEFT: Content */
.ceo-about-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(192, 32, 45, 0.12), rgba(255,133,51,0.12));
  color: var(--primary);
  border: 1px solid rgba(192, 32, 45, 0.25);
  border-radius: 99px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.ceo-about-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.ceo-about-body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: left;
}

.ceo-cta-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.ceo-cta-banner p {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.ceo-cta-btn {
  background: var(--gradient-primary);
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 15px rgba(192, 32, 45, 0.35);
}

.ceo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 32, 45, 0.5);
}

/* RIGHT: Photo */
.ceo-about-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ceo-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ceo-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.ceo-photo-img:hover {
  transform: scale(1.03);
}

.ceo-photo-placeholder {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.ceo-photo-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.4rem 1.25rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(192, 32, 45, 0.4);
  letter-spacing: 0.05em;
}

.ceo-photo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  text-align: center;
  letter-spacing: -0.01em;
}

.ceo-photo-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

@media (max-width: 900px) {
  .ceo-about-grid {
    grid-template-columns: 1fr;
  }
  .ceo-about-photo {
    order: -1;
  }
  .ceo-photo-wrapper {
    max-width: 280px;
    aspect-ratio: 3/4;
  }
}

/* ══════════ TOP BAR ══════════ */
.top-bar {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: #475569;
}
.top-bar-container {
  display: flex;
  justify-content: flex-start;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}
.top-bar-item:hover {
  color: var(--primary);
}
.top-bar-item svg {
  width: 18px;
  height: 18px;
  color: #64748b;
}
.top-bar-item:hover svg {
  color: var(--primary);
}
.lang-selector {
  border: 1px solid #cbd5e1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  margin-left: 0.5rem;
}
.lang-selector:hover {
  border-color: #94a3b8;
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
}

/* ══════════ NEW CEO SECTION STYLES ══════════ */
.ceo-about-title {
  font-size: 2.25rem !important;
  color: #0b1120 !important;
}
.ceo-quote-block {
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}
.ceo-quote-block p {
  color: #334155;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.new-cta-banner {
  background: #111827 !important;
  border-radius: 12px !important;
  padding: 1.5rem 2rem !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.globe-icon {
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
}

.cta-text {
  display: flex;
  flex-direction: column;
}

.cta-subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: #94a3b8;
  text-transform: uppercase;
}

.cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-top: 0.25rem;
}

.ceo-cta-btn.green-btn {
  background: #10b981 !important;
  color: white !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  border-radius: 8px !important;
  padding: 0.75rem 1.5rem !important;
  box-shadow: none !important;
  font-weight: 600 !important;
}

.ceo-profile-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  width: 100%;
  margin-top: -2rem;
  position: relative;
  z-index: 5;
  text-align: center;
}

.ceo-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.ceo-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.ceo-title-line .line {
  height: 1px;
  background: #fde68a;
  width: 30px;
}

.ceo-title-line .title {
  color: #d97706;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ceo-subtitle {
  color: #94a3b8;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.ceo-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.ceo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.yellow-badge {
  background: #fef3c7;
  color: #b45309;
}

.purple-badge {
  background: #f3e8ff;
  color: #7e22ce;
}

/* ══════════ ABOUT PAGE NEW STYLES ══════════ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-intro-content p {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-enroll-btn {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.85rem 2.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(192, 32, 45, 0.35);
}

.about-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 32, 45, 0.5);
  color: white;
}

.about-intro-image-wrapper {
  position: relative;
  width: 100%;
}

.about-intro-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  object-fit: cover;
  display: block;
}

@media (max-width: 992px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/*
NEW
PREMIUM
5-COLUMN
FOOTER
*/

/* ========================================= */
/*       PREMIUM 5-COLUMN FOOTER CSS         */
/* ========================================= */

.premium-footer {
  background: linear-gradient(135deg, #07091D, #160D33);
  color: #E2E8F0;
  padding: 4rem 0 2rem;
  font-family: var(--font-family, 'Inter', sans-serif);
  border-top: 4px solid #9F1239;
  box-shadow: inset 0 20px 40px rgba(0,0,0,0.4);
}

.pf-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pf-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .pf-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.pf-col {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1025px) {
  .pf-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 2rem;
  }
}

.pf-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.pf-logo-globe {
  width: 60px;
  height: 60px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.pf-logo-globe img {
  height: 60px;
  width: 180px;
  max-width: none;
  object-fit: cover;
  object-position: left center;
}
.pf-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.pf-logo-title {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1;
}
.pf-logo-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 2px;
  margin-top: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.pf-logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: #94A3B8;
  letter-spacing: 5px;
  margin-top: 2px;
  text-transform: lowercase;
  line-height: 1;
}
.pf-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94A3B8;
  margin-bottom: 2rem;
}
.pf-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pf-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}
.pf-contact-icon {
  color: #E11D48;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pf-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pf-heading-icon {
  background: linear-gradient(135deg, #F43F5E 0%, #BE123C 100%);
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(225, 29, 72, 0.4);
}
.pf-heading-icon svg {
  color: #fff;
  width: 24px;
  height: 24px;
}
.pf-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.pf-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pf-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.pf-list li svg {
  color: #E11D48;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.pf-list a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.pf-list a:hover {
  color: #F43F5E;
  transform: translateX(4px);
}
.pf-list span {
  color: #CBD5E1;
  font-size: 0.9rem;
}

.pf-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.pf-copyright {
  font-size: 0.9rem;
  color: #94A3B8;
}

.pf-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pf-social-label {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: block;
}
.pf-social-icons {
  display: flex;
  gap: 0.75rem;
}
.pf-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F43F5E 0%, #BE123C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pf-social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(225, 29, 72, 0.5);
  color: #fff;
}

/* ══════════ QUOTE POPUP / MODAL ══════════ */
.quote-modal-container {
  max-width: 800px;
  width: 95%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  box-shadow: var(--shadow-xl), 0 20px 40px rgba(192, 32, 45, 0.1);
  padding: 2.5rem;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.quote-modal-form {
  width: 100%;
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
}

.quote-step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 1rem;
}

.quote-step-badge {
  background: var(--gradient-primary);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: 0 4px 10px rgba(192, 32, 45, 0.3);
}

.quote-step-title {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
}

/* Grid layout for Step 1 matching the table-like style of the screenshot */
.quote-form-grid {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.quote-grid-row {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}

.quote-grid-row:last-child {
  border-bottom: none;
}

.quote-grid-label {
  width: 30%;
  min-width: 200px;
  background-color: rgba(192, 32, 45, 0.03); /* Soft red tint */
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  font-weight: 700;
  color: var(--text-main);
  border-right: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.quote-grid-label .required {
  color: #EF4444;
  margin-left: 0.25rem;
}

.quote-grid-input {
  width: 70%;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Custom Radio button group */
.custom-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.custom-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  user-select: none;
}

.custom-radio-label:hover {
  color: var(--text-main);
}

.custom-radio-label input[type="radio"] {
  display: none;
}

.custom-radio-box {
  width: 18px;
  height: 18px;
  border: 2px solid #CBD5E1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.custom-radio-label input[type="radio"]:checked + .custom-radio-box {
  border-color: var(--primary);
  background: white;
}

.custom-radio-box::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-radio-label input[type="radio"]:checked + .custom-radio-box::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Custom Checkboxes */
.custom-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  user-select: none;
}

.custom-checkbox-label:hover {
  color: var(--text-main);
}

.custom-checkbox-label input[type="checkbox"] {
  display: none;
}

.custom-checkbox-box {
  width: 18px;
  height: 18px;
  border: 2px solid #CBD5E1;
  border-radius: var(--radius-sm);
  display: inline-block;
  position: relative;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox-box {
  border-color: var(--primary);
  background: var(--primary);
}

.custom-checkbox-box::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox-box::after {
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

/* Custom Dropdown / Select */
.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.custom-select-wrapper select {
  width: 100%;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.custom-select-wrapper select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 32, 45, 0.1);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Text & Textarea Inputs */
.quote-grid-input input[type="text"],
.quote-grid-input input[type="number"],
.quote-grid-input textarea {
  width: 100%;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.quote-grid-input input[type="text"]:focus,
.quote-grid-input input[type="number"]:focus,
.quote-grid-input textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 32, 45, 0.1);
}

.quote-grid-input input::placeholder,
.quote-grid-input textarea::placeholder {
  color: #94A3B8;
}

/* Preferred Delivery row specifics */
.delivery-time-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* Duration Inputs */
.duration-inputs {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.duration-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.duration-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Step 2 specific styles */
.quote-contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.quote-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-input-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.quote-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.quote-input-icon {
  position: absolute;
  left: 1rem;
  color: #94A3B8;
  pointer-events: none;
}

.quote-input-wrapper input {
  width: 100%;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-main);
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.quote-input-wrapper input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(192, 32, 45, 0.1);
}

.quote-step-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.quote-next-btn {
  margin-left: auto;
}

/* Success display styles */
.quote-success-state {
  text-align: center;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.quote-success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(192, 32, 45, 0.15);
  animation: pulse-success 2s infinite;
}

.quote-success-icon svg {
  width: 44px;
  height: 44px;
}

.quote-success-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quote-success-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto;
}

@keyframes pulse-success {
  0% { transform: scale(1); box-shadow: 0 10px 25px rgba(192, 32, 45, 0.15); }
  50% { transform: scale(1.05); box-shadow: 0 15px 35px rgba(192, 32, 45, 0.25); }
  100% { transform: scale(1); box-shadow: 0 10px 25px rgba(192, 32, 45, 0.15); }
}

/* Responsive grid table formatting */
@media (max-width: 768px) {
  .quote-grid-row {
    flex-direction: column;
  }
  .quote-grid-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .quote-grid-input {
    width: 100%;
  }
  .quote-contact-form-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ══════════ ISO CERTIFICATION SECTION ══════════ */
.iso-section {
  background: #ffffff;
  padding: 6rem 0;
  border-top: 1px solid #f1f5f9;
}
.iso-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}
.iso-badge {
  display: inline-block;
  background: #8F5E15;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 1.25rem;
  border-radius: 99px;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.iso-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.iso-title-accent {
  color: #B3862B;
}
.iso-divider {
  width: 60px;
  height: 3px;
  background: #FF8A00;
  margin-bottom: 2rem;
  border: none;
}
.iso-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1.5rem;
}
.iso-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.iso-img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(179, 134, 43, 0.18);
}
.iso-img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 992px) {
  .iso-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .iso-title {
    font-size: 2.25rem;
  }
}

/* ══════════ CLIENT LOGOS SECTION (MARQUEE) ══════════ */
.client-logos-section {
  padding: 3rem 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Subtle fade gradient overlay on left and right edges for a premium scroll mask */
.client-logos-section::before,
.client-logos-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.client-logos-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95), transparent);
}
.client-logos-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.95), transparent);
}

.logos-marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.logos-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee-scroll 30s linear infinite;
}

/* Pause animation on hover for interactive feel */
.logos-marquee-track:hover {
  animation-play-state: paused;
}

.logos-group {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-right: 6rem;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: auto;
  flex-shrink: 0;
}

.client-logo-item img {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.3s ease;
}

.client-logo-item img:hover {
  transform: scale(1.06);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .client-logos-section {
    padding: 2rem 0;
  }
  .client-logo-item {
    height: 56px;
  }
  .logos-group {
    gap: 4rem;
    padding-right: 4rem;
  }
}



/* ══════════ BACK TO TOP BUTTON ══════════ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(20px) scale(0.85);
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(192, 32, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s,
              box-shadow 0.25s ease;
}

#back-to-top svg {
  stroke: var(--primary);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  visibility: visible;
}

#back-to-top:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.1);
  box-shadow: 0 10px 32px rgba(192, 32, 45, 0.25), 0 0 0 2px rgba(192, 32, 45, 0.2);
}

#back-to-top:active {
  transform: translateX(-50%) scale(0.95);
}

@media (max-width: 768px) {
  #back-to-top {
    bottom: 1.25rem;
    width: 44px;
    height: 44px;
  }
}

/* ═══════════════════════════════════════════ */
/* NEW SECTIONS CSS ADDED TO FIX STYLING       */
/* ═══════════════════════════════════════════ */


/* ── Integrations / Mockup ── */
.section-integrations {
  padding: 5rem 0;
  background: #f8fafc;
}
.integration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.integration-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.integration-content p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.about-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
  transition: all 0.3s ease;
}
.about-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 51, 102, 0.4);
}

/* Mockup UI */
.transcription-mockup {
  background: white;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}
.mockup-header {
  background: #f1f5f9;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
}
.window-controls {
  display: flex;
  gap: 6px;
  margin-right: 1rem;
}
.control {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.control.close { background: #ef4444; }
.control.minimize { background: #f59e0b; }
.control.maximize { background: #10b981; }
.mockup-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

.mockup-body { padding: 1.5rem; }
.mockup-audio-player {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.waveform-container {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  height: 30px;
}
.wave-bar {
  flex: 1;
  height: 20%;
  background: #cbd5e1;
  border-radius: 2px;
}
.wave-bar.active { background: var(--primary); height: 80%; animation: equalizer 1s infinite alternate; }
.wave-bar.active:nth-child(odd) { animation-delay: 0.2s; }
.wave-bar.active:nth-child(3n) { animation-delay: 0.5s; }

@keyframes equalizer {
  0% { height: 30%; }
  100% { height: 100%; }
}

.mockup-transcript { display: flex; flex-direction: column; gap: 1rem; }
.transcript-line .speaker {
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.2rem;
}
.transcript-line .speaker.speaker-2 { color: #f43f5e; }
.transcript-line .timestamp { color: #94a3b8; font-weight: normal; margin-left: 0.5rem; }
.transcript-line .text { font-size: 0.95rem; color: #334155; }
.active-line .text { color: #0f172a; font-weight: 500; }
.cursor { animation: blink 1s infinite; color: var(--primary); }

/* ── ISO Section ── */
.iso-section {
  padding: 5rem 0;
  background: white;
}
.iso-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.iso-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.iso-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.iso-title-accent { color: var(--primary); }
.iso-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 2px;
  margin: 1.5rem 0;
}
.iso-content p {
  color: #475569;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.iso-img-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border: 1px solid #e2e8f0;
}
.iso-img { width: 100%; height: auto; border-radius: 8px; }

/* ── Industry Solutions ── */
.section-industry {
  padding: 5rem 0;
  background: #f8fafc;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.industry-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--industry-color);
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.card-icon-wrapper {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  display: flex; align-items: center; justify-content: center;
  color: var(--industry-color);
  margin-bottom: 1.5rem;
}
.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}
.industry-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.learn-more:hover { gap: 0.8rem; }

/* ── Pricing Grid ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
  overflow: visible;
}
.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(255, 51, 102, 0.1);
  transform: scale(1.05);
  z-index: 2;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.pricing-card--featured:hover { transform: translateY(-10px) scale(1.05); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.pricing-tier-name { font-size: 1.25rem; font-weight: 700; color: #475569; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 3rem; font-weight: 800; color: #0f172a; margin-bottom: 1rem; }
.pricing-amount span { font-size: 1rem; font-weight: 500; color: #64748b; }
.pricing-desc { color: #64748b; margin-bottom: 2rem; min-height: 48px; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 2.5rem 0; }
.pricing-features li { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; color: #334155; font-weight: 500; }
.pricing-features li svg { color: #10b981; }
.pricing-features li.disabled { color: #94a3b8; }
.pricing-features li.disabled svg { color: #cbd5e1; }
.pricing-card .btn { width: 100%; text-align: center; justify-content: center; }

@media (max-width: 992px) {
  .integration-grid, .iso-grid, .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════ */
/* HERO MIC SCENE CSS (MATCHING SCREENSHOT)    */
/* ═══════════════════════════════════════════ */

.mic-scene {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Central Mic Button */
.mic-btn {
  width: 90px;
  height: 90px;
  background: #f43f5e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4);
  position: relative;
  animation: mic-pulse-core 2s infinite;
}
.mic-btn svg {
  width: 40px;
  height: 40px;
  color: white;
}

@keyframes mic-pulse-core {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Ripple Rings */
.mic-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(244, 63, 94, 0.2);
  pointer-events: none;
}

.mic-ring--1 { width: 150px; height: 150px; border-width: 1px; animation: ripple 3s linear infinite; }
.mic-ring--2 { width: 250px; height: 250px; border-width: 1px; border-style: dashed; animation: ripple 3s linear infinite 0.75s; }
.mic-ring--3 { width: 350px; height: 350px; border-width: 1px; animation: ripple 3s linear infinite 1.5s; }
.mic-ring--4 { width: 450px; height: 450px; border-width: 1px; border-style: dotted; border-color: rgba(99, 102, 241, 0.2); animation: ripple 3s linear infinite 2.25s; }

@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* Floating Words */
.mic-words {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.mic-word {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: float-word 4s ease-in-out infinite;
}

.mic-word-1 { top: 10%; right: 15%; animation-delay: 0s; }
.mic-word-2 { top: 35%; right: -5%; animation-delay: 1.2s; }
.mic-word-3 { top: 45%; left: 0%; animation-delay: 2.4s; }
.mic-word-4 { bottom: 20%; left: 15%; animation-delay: 3.6s; }

@keyframes float-word {
  0% { transform: translateY(10px) scale(0.9); opacity: 0; }
  20% { transform: translateY(0) scale(1); opacity: 1; }
  80% { transform: translateY(-10px) scale(1); opacity: 1; }
  100% { transform: translateY(-20px) scale(0.9); opacity: 0; }
}

/* Bottom Label */
.mic-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.mic-live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-green 1.5s infinite alternate;
}

@keyframes pulse-green {
  from { opacity: 0.5; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1.2); }
}

/* Ensure Hero Text colors match screenshot perfectly */
.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-title--accent {
  color: #f43f5e; /* matches screenshot red */
}
.hero-section {
  background: #1e293b;
  background: radial-gradient(circle at 70% 50%, #2a3348 0%, #151e2e 80%);
}
.hero-btn-primary {
  background: linear-gradient(135deg, #f43f5e, #ff8c8c);
  border: none;
  box-shadow: 0 8px 25px rgba(244, 63, 94, 0.3);
}
.hero-btn-primary:hover {
  background: linear-gradient(135deg, #ff8c8c, #f43f5e);
}
.btn-outline-hero {
  background: white;
  color: #0f172a;
  border: none;
}
.btn-outline-hero:hover {
  background: #f8fafc;
  color: #0f172a;
}

/* ═══════════════════════════════════════════ */
/* CONTACT MODAL CSS                           */
/* ═══════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 1.5rem 2rem 1.5rem;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}
.modal-close:hover {
  color: #0f172a;
}

.modal-header {
  text-align: center;
  margin-bottom: 1rem;
}

.modal-logo {
  height: 72px;
  margin-bottom: 1rem;
}

.modal-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  color: #64748b;
  font-size: 0.95rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.modal-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modal-input-group label {
  font-weight: 800;
  color: #0f172a;
  font-size: 0.9rem;
}

.modal-input-group .required {
  color: #ef4444;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper.align-top {
  align-items: flex-start;
}

.input-icon {
  position: absolute;
  left: 1rem;
  color: #94a3b8;
}

.textarea-icon {
  top: 1rem;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  font-size: 0.95rem;
  color: #0f172a;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #f43f5e;
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #94a3b8;
}

.input-wrapper textarea {
  resize: vertical;
  min-height: 70px;
  font-family: inherit;
}

.modal-submit-btn {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.7rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f43f5e;
  background: #ffffff;
  border: solid 2px transparent;
  border-radius: 8px;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(to right, #fef08a, #f43f5e);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(244, 63, 94, 0.15);
}

.modal-submit-btn svg {
  color: #f43f5e;
}

.modal-footer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ═══════════════════════════════════════════ */
/* HEADER & TOP BAR CSS FIX                    */
/* ═══════════════════════════════════════════ */

/* Ensure the body doesn't have margin top */
body { margin: 0; padding: 0; }

.top-bar {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 1001; /* Above header */
}

.top-bar-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.top-bar-item:hover { color: var(--primary); }

.header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  flex-shrink: 0;
  object-fit: contain;
  height: 100px;
  width: auto;
}

.premium-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.premium-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}

.premium-nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 8px;
  z-index: 2;
  white-space: nowrap;
}

.premium-nav-item:hover,
.premium-nav-item.active {
  color: #0f172a;
}

.premium-nav-item svg {
  color: #94a3b8;
  transition: color 0.2s;
}

.premium-nav-item:hover svg,
.premium-nav-item.active svg {
  color: var(--primary);
}

.nav-bubble {
  position: absolute;
  top: 0;
  bottom: 0;
  background: #f1f5f9;
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}

.nav-bubble.active { opacity: 1; }

.premium-nav-btn {
  background: #0f172a;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.premium-nav-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

/* Dropdown CSS */
.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 0.5rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background: #f8fafc;
  color: var(--primary);
}

/* Fix Hero Section to sit nicely below header */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* ═══════════════════════════════════════════ */
/* REFINED STYLES FROM SCREENSHOTS             */
/* ═══════════════════════════════════════════ */

/* ── Integrations Section (Screenshot 1) ── */
.section-integrations {
  background-color: #fffafb; /* Very faint warm pinkish-white matching screenshot */
}

.integration-content p {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.8;
}

.integration-content p strong, 
.integration-content p b,
.integration-content span {
  color: #f43f5e; /* "Audio-to-Text" is highlighted red */
}

.about-contact-btn {
  background: white !important;
  color: #f43f5e !important;
  border: 2px solid #f43f5e !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  border-radius: 2rem !important;
}
.about-contact-btn:hover {
  background: #fff1f2 !important;
  transform: translateY(-2px) !important;
}
.about-contact-btn .btn-arrow {
  color: #f43f5e;
}

/* Transcription Mockup */
.transcription-mockup {
  background: white;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0,0,0,0.05);
  border-radius: 12px;
}
.mockup-header {
  background: #f8fafc;
  border-bottom: 1px solid #f1f5f9;
}
.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27c93f; }

.mockup-title {
  color: #475569;
  font-weight: 600;
  font-size: 0.8rem;
  justify-content: center;
  flex: 1;
  margin-right: 40px; /* Offset the window controls to truly center */
}

.mockup-audio-player {
  background: white;
  border-bottom: 1px solid #f1f5f9;
  border-radius: 0;
  padding: 0.8rem 0;
  margin-bottom: 1rem;
}
.play-btn {
  background: #f43f5e; /* Pink */
  width: 32px; height: 32px;
}
.wave-bar { background: #e2e8f0; width: 4px; border-radius: 2px; }
.wave-bar.active { background: #f43f5e; }
.time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}

.mockup-transcript { gap: 1.25rem; }
.transcript-line .speaker {
  font-size: 0.7rem;
  font-weight: 700;
  color: #3b82f6; /* Speaker 1 Blue */
}
.transcript-line .speaker.speaker-2 {
  color: #10b981; /* Speaker 2 Green */
}
.transcript-line .text {
  font-size: 0.85rem;
  color: #334155;
  line-height: 1.6;
}
.transcript-line.active-line .text {
  background: #ffe4e6; /* Light pink highlight */
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  color: #0f172a;
}

/* ── ISO Section (Screenshot 2) ── */
.iso-badge {
  background: #b45309 !important; /* Gold/Brown */
  color: white !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 4px; /* Less rounded than pill */
  display: inline-block;
  font-size: 0.75rem;
}
.iso-title {
  color: #0f172a;
  font-size: 2.2rem;
}
.iso-title-accent {
  color: #b45309; /* Gold/Brown text */
}
.iso-divider {
  background: #b45309 !important;
  width: 40px;
  height: 3px;
  margin: 1rem 0 1.5rem 0;
}
.iso-img-wrapper {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
  border-radius: 8px;
  overflow: hidden;
}

/* ── Multilingual Section (Screenshot 3) ── */
.section-multilingual {
  padding: 5rem 0;
  background-color: #f8fafc;
  background-image: url('../images/world-map.png'); /* Assume map exists or just use faint color */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.multilingual-header h2 {
  font-size: 2rem;
  color: #0f172a;
  display: inline-block;
  position: relative;
  margin-bottom: 3rem;
}
.multilingual-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #10b981, #f59e0b, #ef4444);
  border-radius: 2px;
}

.flags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.flag-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.flag-item img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.flag-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}
.more-languages {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #94a3b8;
  font-style: italic;
}

/* ═══════════════════════════════════════════ */
/* FORCE HEADER VISIBILITY                     */
/* ═══════════════════════════════════════════ */

.header {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  display: block !important;
}

.premium-nav-item, 
.premium-nav-links, 
.premium-nav, 
.logo, 
.nav-container {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* ═══════════════════════════════════════════ */
/* INDUSTRIES PAGE STYLES                      */
/* ═══════════════════════════════════════════ */

/* Hero */
.industries-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--bg-color) 0%, #f1f5f9 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.industries-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
  z-index: 0;
}
.industries-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.industries-hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.industries-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.industries-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Grid Section */
.industries-section {
  padding: 5rem 0;
  background: white;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.ind-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.ind-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: var(--card-bg);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}
.ind-card:hover::before {
  opacity: 0.5;
}
.ind-num {
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  transition: color 0.3s ease;
}
.ind-card:hover .ind-num {
  color: rgba(0, 0, 0, 0.06);
}
.ind-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--card-bg);
  color: var(--card-accent);
}
.ind-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.ind-divider {
  width: 40px;
  height: 3px;
  background: var(--card-accent);
  margin-bottom: 1.5rem;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.ind-card:hover .ind-divider {
  width: 60px;
}
.ind-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* CTA */
.industries-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.industries-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: 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='%23ffffff' fill-opacity='0.05'%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");
}
.industries-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.industries-cta p {
  font-size: 1.15rem;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.industries-cta .btn {
  background: white;
  color: var(--primary);
}
.industries-cta .btn:hover {
  background: var(--bg-color);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .industries-hero { padding: 6rem 0 3rem; }
  .industries-hero h1 { font-size: 2.5rem; }
  .industries-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════ */
/* SUB-PAGE HERO STYLES                        */
/* ═══════════════════════════════════════════ */
.sub-page-hero {
  padding: 8rem 0 4rem; /* Top padding is large to account for fixed header */
  background: #0f172a; /* Dark slate */
  color: white;
  position: relative;
}
.sub-page-hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.sub-page-hero__subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════ */
/* FAQ PAGE STYLES                             */
/* ═══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}
.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-item.active .faq-question {
  color: var(--primary);
  background: rgba(2, 132, 199, 0.03);
}
.faq-icon {
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  opacity: 0;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
}
.faq-item.active .faq-content {
  max-height: 600px; /* Big enough for any answer */
  padding: 0 2rem 1.5rem;
  opacity: 1;
}

/* ══════════ PREMIUM GENERATED HERO ══════════ */
.generated-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
  background: linear-gradient(135deg, #020617 0%, #1e293b 50%, #0c2554 100%);
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .generated-hero {
    grid-template-columns: 1fr 1.25fr;
  }
}

.generated-hero-image {
  background-size: cover;
  background-position: center;
  min-height: 360px;
  width: 100%;
}

.generated-hero-content {
  background: #0c2554;
  color: #ffffff;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .generated-hero-content {
    padding: 80px 100px 80px 80px;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -6%;
    padding-left: 100px;
    background: linear-gradient(135deg, #0c2554 0%, #0b1e3e 100%);
  }
}

.generated-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.generated-hero-buttons .btn {
  border-radius: 9999px;
  font-weight: 700;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.generated-hero-buttons .btn-yellow {
  background: #ffd500;
  color: #0f172a;
}

.generated-hero-buttons .btn-yellow:hover {
  background: #e6c000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.25);
}

.generated-hero-buttons .btn-white {
  background: #ffffff;
  color: #0c2554;
  border: 1.5px solid #cbd5e1;
}

.generated-hero-buttons .btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.generated-page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.generated-page-no-image {
  max-width: 800px;
  margin: 0 auto;
}

/* ══════════ SERVICES & STATS SECTIONS ══════════ */
.generated-services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 0 2rem 0;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.generated-services-section .generated-page-container {
  margin-top: 0;
  margin-bottom: 0;
}

.services-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  background: #e2f5ea;
  color: #15803d;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.services-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  color: #0c2554;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-header p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.service-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.006);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08);
  border-color: #e2e8f0;
}

.service-icon-wrapper {
  background: #f0fdf4;
  color: #16a34a;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #dcfce7;
}

.service-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.service-text-wrapper h3 {
  font-size: 1.15rem;
  color: #0c2554;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-text-wrapper p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Stats Section */
.services-stats {
  background: #f6fcf9;
  border: 1px solid #dcfce7;
  border-radius: 16px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
  .services-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .services-stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

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

.stat-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  background: #e2f5ea;
  color: #15803d;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-value-group {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0c2554;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #15803d;
}

.stat-item > p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  padding-left: 48px;
}

.services-cta {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
}

.services-cta a {
  color: #16a34a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.services-cta a:hover {
  text-decoration: underline;
}

.services-cta a svg {
  transition: transform 0.2s ease;
}

.services-cta a:hover svg {
  transform: translateX(4px);
}

/* ══════════ ABOUT US SECTION ══════════ */
.about-section {
  padding: 2rem 0 6rem 0;
  background: #ffffff;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.about-section .generated-page-container {
  margin-top: 0;
}

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.about-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 12px;
}

.about-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  color: #0c2554;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-header p {
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

@media (min-width: 992px) {
  .about-row {
    grid-template-columns: 1.1fr 1fr;
  }
}

.about-image-container {
  position: relative;
  border-right: 6px solid #007bff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-container:hover img {
  transform: scale(1.03);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #007bff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #0c2554;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.about-feature-icon {
  background: #f0f7ff;
  color: #007bff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #d0e7ff;
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature-text h4 {
  font-size: 1.05rem;
  color: #0c2554;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature-text p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
}

/* ══════════ PREMIUM GENERATED HERO ══════════ */
.generated-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
  background: linear-gradient(135deg, #020617 0%, #1e1e1e 50%, #2d0a0d 100%);
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .generated-hero {
    grid-template-columns: 1fr 1.2fr;
  }
}

/* Image on the LEFT */
.generated-hero-image {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.generated-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content on the RIGHT */
.generated-hero-content {
  background: linear-gradient(135deg, var(--primary) 0%, #8b0011 100%);
  color: #ffffff;
  padding: 50px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .generated-hero-content {
    padding: 80px 80px 80px 96px;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -5%;
    background: linear-gradient(135deg, #C0202D 0%, #8b0011 60%, #6b0009 100%);
  }
}

/* Red glow accent on the content panel */
.generated-hero-content::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 100, 100, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.generated-hero-content > * {
  position: relative;
  z-index: 1;
}

.generated-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.generated-hero-buttons .btn {
  border-radius: 9999px;
  font-weight: 700;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.generated-hero-buttons .btn-yellow {
  background: var(--accent);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(255, 213, 0, 0.35);
}

.generated-hero-buttons .btn-yellow:hover {
  background: #e6c000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 213, 0, 0.45);
  color: #0f172a;
}

.generated-hero-buttons .btn-white {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.generated-hero-buttons .btn-white:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.generated-page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.generated-page-no-image {
  max-width: 800px;
  margin: 0 auto;
}

/* ══════════ SERVICES & STATS SECTIONS ══════════ */
.generated-services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 0 2rem 0;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.generated-services-section .generated-page-container {
  margin-top: 0;
  margin-bottom: 0;
}

.services-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.services-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.services-header p {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

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

.service-card {
  background: #ffffff;
  border: 1.5px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.006);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.08);
  border-color: rgba(192, 32, 45, 0.2);
}

.service-icon-wrapper {
  background: var(--primary-light);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(192, 32, 45, 0.2);
}

.service-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.service-text-wrapper h3 {
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 8px;
}

.service-text-wrapper p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* ══════════ HOW IT WORKS SECTION ══════════ */
.section-how-it-works {
  background: var(--bg-secondary);
  color: var(--text-main);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section-how-it-works::before {
  content: '';
  position: absolute;
  top: 10%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,32,45,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-how-it-works::after {
  content: '';
  position: absolute;
  bottom: 0; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(192,32,45,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.how-it-works-header h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.how-it-works-header .subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 768px) {
  .steps-container { grid-template-columns: 1fr; }
}

.step-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(192, 32, 45, 0.2);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-number {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-display);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(192,32,45,0.1) 0%, rgba(255,153,51,0.1) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(192,32,45,0.1);
}

.step-icon svg {
  width: 32px;
  height: 32px;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ══════════ ABOUT US SECTION ══════════ */
.about-section {
  padding: 2rem 0 6rem 0;
  background: #ffffff;
  color: #1e293b;
  font-family: 'Inter', sans-serif;
}

.about-section .generated-page-container { margin-top: 0; }

.about-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.about-badge {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-header h2 {
  font-size: clamp(2rem, 4.5vw, 2.5rem);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-header p {
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

@media (min-width: 992px) {
  .about-row { grid-template-columns: 1.1fr 1fr; }
}

.about-image-container {
  position: relative;
  border-right: 6px solid var(--primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-container:hover img { transform: scale(1.03); }

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.about-content h3 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-content > p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.about-feature-icon {
  background: var(--primary-light);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(192, 32, 45, 0.2);
}

.about-feature-icon svg { width: 22px; height: 22px; }

.about-feature-text h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 6px;
}

.about-feature-text p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}
