--- ---
/* Medical Scribe Custom Theme - Based on Original Framer Design */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Britti Sans Font */
@font-face {
  font-family: 'Britti Sans';
  src: url('../fonts/britti-sans-regular.woff2') format('woff2'),
    url('../fonts/britti-sans-regular.woff') format('woff'),
    url('../fonts/britti-sans-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Lucide Icons */
.lucide {
  width: 1em;
  height: 1em;
}

/* CSS Variables / Design Tokens */
:root {
  /* Colors */
  --color-text-primary: #000;
  --color-text-secondary: #52525b;
  --color-text-tertiary: #71717a;
  --color-bg-primary: #fff;
  --color-bg-secondary: #fafafa;
  --color-bg-tertiary: #f4f4f5;
  --color-border: #e4e4e7;
  --color-border-light: #f4f4f5;

  /* Accent Colors */
  --color-accent-blue: #2563eb;
  --color-accent-blue-light: #bfdbfe;
  --color-accent-green: #10e879;
  --color-accent-red: #dc2626;
  --color-accent-red-light: #fef2f2;

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

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 40px;
  --font-size-5xl: 48px;
  --font-size-6xl: 60px;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-2xl: 60px;
  --spacing-3xl: 80px;
  --spacing-4xl: 100px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Layout */
  --max-width-sm: 640px;
  --max-width-md: 768px;
  --max-width-lg: 1024px;
  --max-width-xl: 1280px;
  --max-width-2xl: 1536px;
}


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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  padding-top: 16px;
  /* Space for hero section */
}

@media (max-width: 991px) {
  body {
    padding-top: 16px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
}

h1,
h2,
h3 {
  font-family: 'Britti Sans', var(--font-family);
  font-weight: 500;
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

a {
  color: var(--color-accent-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  /* opacity: 0.8; */
}

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

.section {
  padding: var(--spacing-4xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

/* Header / Navigation - Wiza Style */
.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  top: 16px;
  padding: 0 20px;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(4px);
  padding: 13.5px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05),
    0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 640px;
  margin: 0 auto;
  transition: all 0.3s ease;
  height: 57px;
  position: relative;
  z-index: 1001;
}

.site-header.scrolled .site-nav {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Logo */
.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #2a0365;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 28px;
  width: 28px;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(47, 1, 151, 0.15),
    0 1px 3px rgba(47, 1, 151, 0.1);
}

.logo-text {
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* Desktop Navigation */
.desktop-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
  flex: 1;
}

.desktop-menu>li {
  position: relative;
}

.desktop-menu a,
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #3d3b45;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
}

.desktop-menu a:hover,
.dropdown-toggle:hover {
  color: #2a0365;
  opacity: 1;
}

.dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: var(--spacing-sm);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  display: none;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a:not(.dropdown-item):not(.dropdown-see-all) {
  display: block;
  padding: 12px 16px;
  color: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease;
  font-size: var(--font-size-sm);
}

.dropdown-menu a:hover {
  background-color: var(--color-bg-secondary);
  opacity: 1;
}

/* Specialties Dropdown - Two Column */
.dropdown-menu-specialties {
  min-width: 720px;
  padding: 12px;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: auto;
  margin-top: 16px;
}

.dropdown-specialties-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-specialties-grid .dropdown-item {
  padding: 12px 16px;
}

.dropdown-heading {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 12px 4px;
  margin-bottom: 4px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-radius: 12px;
  transition: all 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.dropdown-item:hover {
  background-color: rgba(42, 3, 101, 0.04);
  opacity: 1;
}

.dropdown-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: all 0.15s ease;
}

.dropdown-item-icon i {
  font-size: 20px;
  color: #6b7280;
}

.dropdown-item:hover .dropdown-item-icon {
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.dropdown-item-content {
  flex: 1;
  padding-top: 2px;
}

.dropdown-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2px;
  line-height: 1.4;
}

.dropdown-item-description {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* Dropdown See All Link */
.dropdown-see-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--color-border);
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.15s ease;
}

.dropdown-see-all:hover {
  color: #2a0365;
  background-color: rgba(42, 3, 101, 0.04);
  opacity: 1;
}

.dropdown-see-all svg {
  transition: transform 0.15s ease;
}

.dropdown-see-all:hover svg {
  transform: translateX(3px);
}

/* Nav CTA Buttons */
.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .cta-secondary {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
  color: rgb(38, 17, 74);
  box-shadow: rgba(47, 1, 151, 0.01) 0px 11px 4px 0px,
    rgba(47, 1, 151, 0.04) 0px 6px 4px 0px,
    rgba(47, 1, 151, 0.06) 0px 3px 3px 0px,
    rgba(47, 1, 151, 0.08) 0px 1px 1px 0px,
    rgba(47, 1, 151, 0.08) 0px 0px 0px 1px;
}

.nav-cta .cta-secondary:hover {
  background-color: rgba(0, 0, 0, 0.02);
  border-color: rgb(255, 255, 255);
  box-shadow: rgba(47, 1, 151, 0.02) 0px 11px 4px 0px,
    rgba(47, 1, 151, 0.06) 0px 6px 4px 0px,
    rgba(47, 1, 151, 0.08) 0px 3px 3px 0px,
    rgba(47, 1, 151, 0.1) 0px 1px 1px 0px,
    rgba(47, 1, 151, 0.1) 0px 0px 0px 1px;
}

.nav-cta .cta-primary {
  background-color: #2a0365;
  border: 1.5px solid #2a0365;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.scrolled .hamburger-line {
  background-color: #000;
}


/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-primary);
  z-index: 999;
  padding: 120px 24px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list>li {
  margin-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--spacing-lg);
}

.mobile-nav-list>li:last-child {
  border-bottom: none;
}

.mobile-nav-list a,
.mobile-dropdown-toggle {
  display: block;
  padding: 12px 0;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.mobile-dropdown {
  list-style: none;
  padding-left: var(--spacing-lg);
  margin-top: var(--spacing-sm);
  display: none;
}

.mobile-nav-list>li.active .mobile-dropdown {
  display: block;
}

.mobile-dropdown a {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--color-text-secondary);
}


/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header {
    padding: 0 16px;
  }

  .site-header.scrolled {
    padding: 0 16px;
  }

  .site-nav {
    padding: 13.5px 16px;
    max-width: 100%;
    height: 57px;
  }

  .nav-divider {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

/* CTA Buttons */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(white 60%, transparent);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 200%;
  -webkit-mask-position: 0 100%;
  mask-image: linear-gradient(white 60%, transparent);
  mask-repeat: no-repeat;
  mask-size: 100% 200%;
  mask-position: 0 100%;
  transition: all 0.4s ease;
}

.cta:hover::after {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

.cta-primary {
  background-color: #231645;
  color: white;
  border: 1px solid #231645;
}

.cta-primary::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-primary:hover {
  background-color: #1a0f35;
  border-color: #1a0f35;
  box-shadow: 0 4px 12px rgba(35, 22, 69, 0.2);
  opacity: 1;
}

.cta-secondary {
  background-color: white;
  color: #231645;
  border: 1px solid rgba(35, 22, 69, 0.12);
}

.cta-secondary::after {
  background: linear-gradient(180deg, rgba(35, 22, 69, 0.06) 0%, rgba(35, 22, 69, 0) 100%);
}

.cta-secondary:hover {
  border-color: rgba(35, 22, 69, 0.2);
  box-shadow: 0 4px 12px rgba(35, 22, 69, 0.08);
  opacity: 1;
}

/* Inverted variant for dark / colored backgrounds */
.cta-primary-inverted {
  background-color: white;
  color: #231645;
  border: 1px solid white;
}

.cta-primary-inverted::after {
  background: linear-gradient(180deg, rgba(35, 22, 69, 0.06) 0%, rgba(35, 22, 69, 0) 100%);
}

.cta-primary-inverted:hover {
  background-color: #f5f3ff;
  box-shadow: 0 4px 12px rgba(35, 22, 69, 0.15);
  opacity: 1;
}

.cta-secondary-inverted {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary-inverted::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-secondary-inverted:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

/* Nav buttons - keep compact for header */
.nav-cta .cta {
  padding: 7px 16px;
  height: 35px;
}

@media (max-width: 768px) {
  .nav-cta .cta {
    padding: 8px 16px;
    font-size: 13px;
  }
}

.cta-block {
  width: 100%;
}

/* Shared Hero Section */
.hero-section {
  text-align: center;
  padding: 0 20px;
}

.hero-section-bg {
  background: radial-gradient(50% 74.51% at 50% 100%, rgba(255, 255, 255, 0.5) 24.09%, rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, #efefff 0%, rgba(233, 226, 255, 0.8) 15.89%, rgba(255, 225, 241, 0.8) 62.5%, #fff6f5 100%);
  border-radius: 56px;
  padding: 160px 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.hero-section-content {
  position: relative;
  z-index: 1;
}

/* Home Hero */
.hero {
  padding-bottom: 180px;
}

.hero .hero-section-bg {
  padding-bottom: 340px;
}

/* Specialty Hero */
.hero-specialty {
  padding-bottom: var(--spacing-2xl);
}

/* Specialty Index Hero (taller, cards overlap) */
.hero-specialty-index .hero-section-bg {
  padding-bottom: 400px;
}

.specialty-index-grid {
  margin-top: -440px;
  position: relative;
  z-index: 2;
  padding-bottom: var(--spacing-2xl);
}

@media (max-width: 768px) {
  .hero-specialty-index .hero-section-bg {
    padding-bottom: 200px;
  }

  .specialty-index-grid {
    margin-top: -180px;
  }
}

.hero-eyebrow {
  font-size: var(--font-size-lg);
  color: #4c24a3;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.02em;
}

/* Light beam animation */
.hero-light {
  position: absolute;
  width: 132px;
  opacity: 0;
  pointer-events: none;
  animation: hero-light-fade 3s linear infinite;
}

.hero-light:nth-child(1) {
  height: 1328px;
  left: -61px;
  top: -264px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(-30deg);
  animation-delay: 1s;
}

.hero-light:nth-child(2) {
  height: 1360px;
  left: 10px;
  top: -460px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(-22deg);
  animation-delay: 0.5s;
}

.hero-light:nth-child(3) {
  height: 1198px;
  left: 66px;
  top: -698px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6) 44.8%, rgba(255, 255, 255, 0));
  transform: rotate(-15deg);
}

.hero-light:nth-child(4) {
  height: 1198px;
  right: 66px;
  top: -698px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6) 44.8%, rgba(255, 255, 255, 0));
  transform: rotate(-165deg);
}

.hero-light:nth-child(5) {
  height: 1360px;
  right: 10px;
  top: -460px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(-158deg);
  animation-delay: 0.5s;
}

.hero-light:nth-child(6) {
  height: 1328px;
  right: -61px;
  top: -264px;
  background: radial-gradient(116.3% 50% at 0% 50%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  transform: rotate(-150deg);
  animation-delay: 1s;
}

@keyframes hero-light-fade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 16px;
  }

  .hero-section-bg {
    border-radius: 24px;
    padding: 120px 20px 40px;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 160px;
  }

  .hero .hero-section-bg {
    padding: 60px 24px 200px;
  }
}

.hero-section h1 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  line-height: 1.15;
  letter-spacing: normal;
  color: #231645;
  background: linear-gradient(135deg, #231645 0%, #4507cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
}

.hero-section-subtitle {
  font-size: 16px;
  color: #4c24a3;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #2a0365;
  height: 28px;
  padding: 0 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(42, 3, 101, 0.15);
  transition: all 0.2s ease;
}

.hero-badge:hover {
  background-color: #f9f8fc;
  border-color: rgba(42, 3, 101, 0.25);
  transform: translateY(-1px);
}

.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.hero-badge-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}


.hero-image-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  padding: 16px;
  /* background: linear-gradient(180deg, rgba(207, 138, 255, 0.4), rgba(170, 129, 255, 0.2) 40%, rgba(42, 3, 101, 0.08) 100%); */
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 80px rgba(42, 3, 101, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px rgba(42, 3, 101, 0.25);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hero-image-wrapper {
  margin-top: -280px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}

.hero-image-glow div {
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: linear-gradient(to right, #cf8aff, #cf8aff, #ff66c1, #ffad74, #ff63d1, #aa81ff, #ff66c1, #cf8aff);
  background-size: 200% 100%;
  -webkit-mask: radial-gradient(79.55% 50% at 50% 50%, #D9D9D9 0%, rgba(217, 217, 217, 0) 61.47%);
  mask: radial-gradient(79.55% 50% at 50% 50%, #D9D9D9 0%, rgba(217, 217, 217, 0) 61.47%);
  animation: hero-glow-shift 4s linear infinite;
}

@keyframes hero-glow-shift {
  100% {
    background-position: 200% 0;
  }
}

@media (max-width: 768px) {
  .hero-image-wrapper {
    padding: 0 32px;
    margin-top: -160px;
  }
}

/* Downloads Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: var(--spacing-xl) auto 0;
  padding-bottom: 16px;
}

.download-card {
  padding: 32px;
  background-color: var(--color-bg-primary);
  border: 1px solid rgba(42, 3, 101, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.download-card-icon i {
  font-size: 32px;
  color: #231645;
}

.download-card h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-sm);
}

.download-card p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-lg);
  flex: 1;
}

.download-card .cta-block {
  width: 100%;
}

@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Specialty Search */
.specialty-search-wrapper {
  position: relative;
  max-width: 480px;
  margin: 0 auto var(--spacing-xl);
}

.specialty-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color-text-tertiary);
  pointer-events: none;
}

.specialty-search {
  width: 100%;
  padding: 14px 16px 14px 48px;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.specialty-search::placeholder {
  color: var(--color-text-tertiary);
}

.specialty-search:focus {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.specialty-no-results {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  font-size: var(--font-size-lg);
  color: var(--color-text-tertiary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
  margin: var(--spacing-3xl) 0;
}

.feature-card {
  position: relative;
  padding: var(--spacing-xl);
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) translateZ(-1px);
  width: 80%;
  height: 40px;
  background: linear-gradient(90deg, rgb(114, 91, 254), rgb(244, 121, 255) 90%);
  border-radius: 40%;
  filter: blur(10px);
  pointer-events: none;
  opacity: 0.0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::after {
  opacity: 0.8;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(42, 3, 101, 0.15);
}

.feature-card h3 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
}

.feature-card p {
  font-size: var(--font-size-base);
  line-height: 1.7;
}

/* Testimonials */
.testimonial {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent-blue);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  margin: var(--spacing-xl) 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial blockquote {
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

/* FAQ Section */
.faq-section {
  max-width: var(--max-width-lg);
  margin: var(--spacing-3xl) auto;
}

.faq-item {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.faq-answer {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent-blue) 0%, #1d4ed8 100%);
  color: white;
  padding: var(--spacing-3xl) var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--spacing-3xl) 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid var(--color-border);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-4xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.footer-email-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
  width: fit-content;
}

.footer-email-pill:hover {
  border-color: var(--color-text-tertiary);
  background-color: var(--color-bg-secondary);
}

.footer-email-pill i {
  font-size: var(--font-size-base);
}

.footer-email-chevron {
  font-size: var(--font-size-xs) !important;
  color: var(--color-text-tertiary);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-social a {
  color: var(--color-text-secondary);
  font-size: 22px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover {
  color: var(--color-text-primary);
}

.footer-section h4 {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-text-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
  color: var(--color-text-tertiary);
  font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl) var(--spacing-lg);
  }

  .footer-brand {
    grid-column: 1 / -1;
    min-height: auto;
    gap: var(--spacing-lg);
  }
}

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

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

/* Pricing */
.pricing-hero-content {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-title {
  font-family: 'Britti Sans', var(--font-family);
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: normal;
  color: #231645;
  background: linear-gradient(135deg, #231645 0%, #4507cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
}


@media (max-width: 768px) {
  .pricing-title {
    font-size: 36px;
    line-height: 40px;
  }
}

/* Billing toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.pricing-toggle {
  position: relative;
  display: inline-flex;
  background-color: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(42, 3, 101, 0.02);
  border-radius: var(--radius-full);
  padding: 4px;
}

.pricing-toggle-option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.pricing-toggle-option.active {
  color: var(--color-text-primary);
  font-weight: 600;
}

.pricing-toggle-slider {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-full);
  box-shadow: 0 11px 4px #2f019703, 0 6px 4px #2f019705, 0 3px 3px #2f019708, 0 1px 1px #2f01970a;
  transition: left 0.3s ease, width 0.3s ease;
}

.pricing-toggle-badge {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  border: none;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(95deg, rgba(92, 118, 169, 0.8), rgba(96, 80, 161, 0.8) 50%, rgba(146, 79, 115, 0.8));
  transition: all 0.3s ease;
}

.pricing-toggle-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  background: linear-gradient(95deg, rgba(231, 245, 253, 0.64), rgba(232, 226, 254, 0.64) 50%, rgba(252, 226, 240, 0.64)) padding-box,
    linear-gradient(95deg, rgba(172, 210, 238, 0.7), rgba(181, 168, 230, 0.7) 50%, rgba(228, 168, 201, 0.7)) border-box;
  z-index: -1;
  transition: all 0.3s ease;
}

/* Muted state when annual is not selected */
.pricing-toggle-option:not(.active) .pricing-toggle-badge {
  background-image: none;
  -webkit-text-fill-color: var(--color-text-secondary);
  color: var(--color-text-secondary);
}

.pricing-toggle-option:not(.active) .pricing-toggle-badge::before {
  background: transparent;
  border-color: rgba(61, 59, 69, 0.2);
}

/* Hero stacked-card effect */
.hero-section-content .pricing-card,
.hero-section-content .download-card {
  position: relative;
}

.hero-section-content .pricing-card::after,
.hero-section-content .download-card::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(42, 3, 101, 0.12);
  border-top: none;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: 0 32px 24px -12px #7226720f, 0 11px 4px #97019703, 0 6px 4px #97019705, 0 3px 3px #97019708, 0 1px 1px #9701970a;
  pointer-events: none;
  opacity: .8;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
  padding-bottom: 16px;
}

.pricing-card {
  position: relative;
  background-color: var(--color-bg-primary);
  border: 1px solid rgba(42, 3, 101, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
}

.pricing-promo-badge {
  background: linear-gradient(135deg, #cf8aff, #ff66c1, #ffad74);
  color: #fff;
  font-size: var(--font-size-xs);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-align: center;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}

.pricing-promo-badge strong {
  font-family: monospace;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  margin-bottom: var(--spacing-md);
}

.pricing-plan-name {
  font-size: var(--font-size-2xl);
  margin-bottom: 4px;
  color: var(--color-text-primary);
}

.pricing-plan-description {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: 'Britti Sans', var(--font-family);
  font-size: var(--font-size-5xl);
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1;
}

.pricing-price-detail {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: 2px;
}

.pricing-price-billed {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  margin-bottom: var(--spacing-lg);
  min-height: 18px;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--color-border) 0%, rgba(228, 228, 231, 0.3) 50%, var(--color-border) 100%);
  margin: var(--spacing-lg) 0;
}

.pricing-includes-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-md);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
  padding-bottom: 12px;
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232a0365' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Specialty Pages */
.specialty-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
}

/* Specialty Content Section */
.specialty-content {
  padding: var(--spacing-3xl) 0;
}

.specialty-content-inner {
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.specialty-content-inner h2 {
  font-family: 'Britti Sans', var(--font-family);
  font-size: var(--font-size-3xl);
  font-weight: 500;
  color: #231645;
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-md);
}

.specialty-content-inner h2:first-child {
  margin-top: 0;
}

.specialty-content-inner h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-sm);
}

.specialty-content-inner p {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.specialty-content-inner ul,
.specialty-content-inner ol {
  padding-left: var(--spacing-xl);
  margin: 0 0 var(--spacing-lg);
}

.specialty-content-inner ul li,
.specialty-content-inner ol li {
  padding-bottom: 10px;
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Comparison Tables */
.specialty-content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--spacing-xl);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.specialty-content-inner thead th {
  background-color: var(--color-bg-tertiary);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  padding: 14px 20px;
  border-bottom: 2px solid var(--color-border);
  font-size: var(--font-size-sm);
  letter-spacing: 0.01em;
}

.specialty-content-inner tbody td {
  padding: 14px 20px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
  line-height: 1.6;
  vertical-align: top;
}

.specialty-content-inner tbody tr:last-child td {
  border-bottom: none;
}

.specialty-content-inner tbody tr:hover {
  background-color: var(--color-bg-secondary);
}

.specialty-content-inner tbody td:first-child {
  font-weight: 600;
  color: var(--color-text-primary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .specialty-content-inner table {
    font-size: var(--font-size-xs);
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .specialty-content-inner thead th,
  .specialty-content-inner tbody td {
    padding: 10px 14px;
  }
}

/* Specialty Bottom CTA */
.specialty-bottom-cta {
  padding: 0 0 var(--spacing-2xl);
}

.specialty-bottom-cta-card {
  max-width: 1100px;
  margin: 0 auto;
  background: radial-gradient(50% 74.51% at 50% 100%, rgba(255, 255, 255, 0.5) 24.09%, rgba(255, 255, 255, 0.16)),
    linear-gradient(180deg, #efefff 0%, rgba(233, 226, 255, 0.8) 15.89%, rgba(255, 225, 241, 0.8) 62.5%, #fff6f5 100%);
  border-radius: 56px;
  padding: var(--spacing-3xl) var(--spacing-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specialty-bottom-cta-content {
  position: relative;
  z-index: 1;
}

.specialty-bottom-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(42, 3, 101, 0.15);
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #2a0365;
  margin-bottom: var(--spacing-lg);
}

.specialty-bottom-cta-badge i {
  font-size: 16px;
}

.specialty-bottom-cta-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: var(--font-size-4xl);
  font-weight: 500;
  color: #231645;
  background: linear-gradient(135deg, #231645 0%, #4507cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.specialty-bottom-cta-description {
  font-size: var(--font-size-lg);
  color: #4c24a3;
  max-width: 520px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.6;
}

.specialty-bottom-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Specialty Back Link */
.specialty-back {
  text-align: center;
  padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

.specialty-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  transition: all 0.2s ease;
}

.specialty-back a:hover {
  color: var(--color-text-primary);
  border-color: rgba(42, 3, 101, 0.2);
  background-color: var(--color-bg-secondary);
}

.specialty-back a i {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.specialty-back a:hover i {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .specialty-content {
    padding: var(--spacing-2xl) 0;
  }

  .specialty-content-inner h2 {
    font-size: var(--font-size-2xl);
  }

  .specialty-bottom-cta-card {
    padding: var(--spacing-2xl) var(--spacing-lg);
    border-radius: 24px;
  }

  .specialty-bottom-cta-heading {
    font-size: var(--font-size-3xl);
  }
}

/* Specialty Showcase Section */
.specialty-showcase {
  padding: var(--spacing-3xl) 0;
}

.specialty-showcase-first {
  padding-top: var(--spacing-2xl);
}

.specialty-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.specialty-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
}

.specialty-showcase-badge i {
  font-size: 16px;
  color: #231645;
}

.specialty-showcase-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: var(--font-size-4xl);
  font-weight: 500;
  line-height: 1.1;
  color: #231645;
  margin-bottom: var(--spacing-lg);
  text-wrap: balance;
}

.specialty-showcase-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 0;
}

.specialty-showcase-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialty-showcase-visual-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe, #93c5fd);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.specialty-showcase-visual-bg img {
  width: 90%;
  height: auto;
  border-radius: var(--radius-sm) 0 0 0;
}

@media (max-width: 768px) {
  .specialty-showcase-inner {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .specialty-showcase-heading {
    font-size: var(--font-size-3xl);
  }

  .specialty-showcase-visual {
    order: -1;
  }
}

/* Platform Badges */
.platform-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(42, 3, 101, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #231645;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.platform-badge i {
  font-size: 18px;
  color: #4c24a3;
}

a.platform-badge:hover {
  background-color: rgba(255, 255, 255, 0.65);
}

/* Social Proof */
.social-proof-section {
  text-align: center;
  padding: var(--spacing-xl) 0;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 20px 8px 8px;
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
}

.social-proof-avatars {
  display: flex;
}

.social-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.social-proof-avatar+.social-proof-avatar {
  margin-left: -10px;
}

.social-proof-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #231645;
}

/* Bento Feature Cards */
.bento-features {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--spacing-2xl) 20px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.bento-card {
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 3, 101, 0.15);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.bento-card-icon i {
  font-size: 24px;
  color: #231645;
}

.bento-card h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-sm);
}

.bento-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

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

  .bento-card-large {
    grid-column: span 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 36px;
    line-height: 1.15;
  }

  .hero-section-subtitle {
    font-size: var(--font-size-lg);
  }

  .hero-image-wrapper {
    margin-top: 60px;
    padding: 0 16px;
  }

  .nav-menu {
    gap: var(--spacing-md);
  }

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

  .container {
    padding: 0 var(--spacing-lg);
  }

  .section {
    padding: var(--spacing-2xl) 0;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-text-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

/* Use Cases Section */
.use-cases-section {
  padding: 0 20px;
  margin-bottom: var(--spacing-2xl);
}

.use-cases-wrapper {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.7) 0%, transparent 50%),
              radial-gradient(ellipse at 0% 50%, rgba(224, 231, 255, 0.5) 0%, transparent 40%),
              radial-gradient(ellipse at 100% 50%, rgba(224, 231, 255, 0.5) 0%, transparent 40%),
              linear-gradient(180deg, #e8eeff 0%, #dfe6f6 50%, #e4eaf8 100%);
  border-radius: 56px;
  padding: 80px 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.use-cases-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.use-cases-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6b7a99;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.use-cases-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  color: #1e2a4a;
  margin-bottom: 24px;
}

.use-cases-heading em {
  font-style: italic;
}

.use-cases-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #1e2a4a;
  text-decoration: none;
  margin-bottom: 20px;
  transition: gap 0.2s ease;
}

.use-cases-link:hover {
  gap: 12px;
}

.use-cases-link i {
  width: 16px;
  height: 16px;
}

.use-cases-description {
  font-size: 16px;
  line-height: 1.6;
  color: #4a5578;
  margin-bottom: 32px;
  max-width: 400px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.use-cases-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  color: #4a5578;
  text-decoration: none;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.use-cases-item:hover {
  color: #1e2a4a;
}

.use-cases-item i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.use-cases-item.active {
  font-weight: 600;
  color: #1e2a4a;
}

/* Use Cases Preview Card */
.use-cases-preview {
  display: flex;
  justify-content: center;
}

.use-cases-preview-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
}

.preview-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  gap: 12px;
}

.preview-template-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 500;
  color: #3E63DD;
  background: #fff;
  border: 1px solid #F0F0F3;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.preview-template-btn:hover {
  border-color: #e0e0e6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.preview-template-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.preview-template-chevron {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #B9BBC6;
}

.preview-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-family: var(--font-family);
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.preview-copy-btn:hover {
  color: #374151;
}

.preview-copy-btn i {
  width: 14px;
  height: 14px;
}

.preview-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.preview-more-btn:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.preview-more-btn i {
  width: 16px;
  height: 16px;
}

.preview-card-content {
  padding: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  max-height: 320px;
  overflow: hidden;
  position: relative;
}

.preview-card-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}

.preview-section {
  margin-bottom: 16px;
}

.preview-section strong {
  display: block;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.preview-section p {
  margin: 0;
  color: #444;
  font-size: 13px;
}

.preview-section ul {
  margin: 4px 0 0;
  padding-left: 20px;
  color: #444;
}

.preview-section ul li {
  margin-bottom: 2px;
}

.preview-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid #eee;
  background-color: #fafafa;
}

.preview-footer-actions {
  display: flex;
  gap: 8px;
}

.preview-footer-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.preview-footer-actions button:hover {
  background-color: #eee;
  color: #666;
}

.preview-footer-actions button i {
  width: 16px;
  height: 16px;
}

.preview-footer-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.preview-stat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #888;
}

.preview-stat i {
  width: 14px;
  height: 14px;
}

.preview-stat.highlight {
  color: #22863a;
}

.preview-stat.highlight i {
  color: #22863a;
}

@media (max-width: 900px) {
  .use-cases-wrapper {
    border-radius: 32px;
    padding: 60px 40px;
  }

  .use-cases-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .use-cases-heading {
    font-size: 36px;
  }

  .use-cases-preview {
    order: -1;
  }
}

@media (max-width: 480px) {
  .use-cases-section {
    padding: 0 16px;
  }

  .use-cases-wrapper {
    border-radius: 24px;
    padding: 40px 24px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .preview-card-header {
    flex-wrap: wrap;
  }

  .preview-card-tabs {
    order: 1;
    width: 100%;
    margin-bottom: 8px;
  }

  .preview-card-actions {
    order: 2;
    width: 100%;
    justify-content: flex-end;
  }

  .preview-footer-stats {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* Solution Section (Wiza-style) */
.solution-section {
  position: relative;
  background-color: var(--color-bg-primary);
  padding: 100px 0;
  overflow: hidden;
}

.solution-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: 56px;
  font-weight: 500;
  color: #231645;
  margin-bottom: var(--spacing-lg);
  line-height: 1.1;
}

.solution-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Decorative shapes */
.solution-shapes {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 300px;
  pointer-events: none;
}

.solution-shapes-left {
  left: 0;
}

.solution-shapes-right {
  right: 0;
}

.solution-shape {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  background-color: transparent;
}

/* Left side shapes - scattered pattern */
.solution-shapes-left .solution-shape:nth-child(1) {
  top: 0;
  left: 20px;
}

.solution-shapes-left .solution-shape:nth-child(2) {
  top: 40px;
  left: 80px;
}

.solution-shapes-left .solution-shape:nth-child(3) {
  top: 90px;
  left: 30px;
}

.solution-shapes-left .solution-shape:nth-child(4) {
  top: 100px;
  left: 90px;
}

.solution-shapes-left .solution-shape:nth-child(5) {
  top: 100px;
  left: 150px;
}

.solution-shapes-left .solution-shape:nth-child(6) {
  top: 100px;
  left: 210px;
}

.solution-shapes-left .solution-shape:nth-child(7) {
  top: 160px;
  left: 60px;
}

.solution-shapes-left .solution-shape:nth-child(8) {
  top: 160px;
  left: 120px;
}

/* Right side shapes - mirrored pattern */
.solution-shapes-right .solution-shape:nth-child(1) {
  top: 0;
  right: 20px;
}

.solution-shapes-right .solution-shape:nth-child(2) {
  top: 40px;
  right: 80px;
}

.solution-shapes-right .solution-shape:nth-child(3) {
  top: 90px;
  right: 30px;
}

.solution-shapes-right .solution-shape:nth-child(4) {
  top: 100px;
  right: 90px;
}

.solution-shapes-right .solution-shape:nth-child(5) {
  top: 100px;
  right: 150px;
}

.solution-shapes-right .solution-shape:nth-child(6) {
  top: 100px;
  right: 210px;
}

.solution-shapes-right .solution-shape:nth-child(7) {
  top: 160px;
  right: 60px;
}

.solution-shapes-right .solution-shape:nth-child(8) {
  top: 160px;
  right: 120px;
}

@media (max-width: 1200px) {
  .solution-shapes {
    width: 180px;
  }

  .solution-shapes-left .solution-shape:nth-child(5),
  .solution-shapes-left .solution-shape:nth-child(6),
  .solution-shapes-right .solution-shape:nth-child(5),
  .solution-shapes-right .solution-shape:nth-child(6) {
    display: none;
  }
}

@media (max-width: 900px) {
  .solution-shapes {
    display: none;
  }

  .solution-heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .solution-section {
    padding: 60px 0;
  }

  .solution-heading {
    font-size: 32px;
  }
}

/* Features Showcase Section */
.features-showcase-section {
  padding: var(--spacing-3xl) 0;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  padding: var(--spacing-3xl) 0;
}

.feature-showcase-reverse {
  direction: rtl;
}

.feature-showcase-reverse > * {
  direction: ltr;
}

.feature-showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
}

.feature-showcase-badge i {
  width: 16px;
  height: 16px;
  color: #231645;
}

.feature-showcase-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  color: #231645;
  margin-bottom: var(--spacing-lg);
  text-wrap: balance;
}

.feature-showcase-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

.feature-showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-showcase-visual-bg {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
}

/* Feature Visual Backgrounds */
.feature-visual-transcription {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8e0ff 50%, #f5e6ff 100%);
}

.feature-visual-security {
  background: linear-gradient(135deg, #e8f5e9 0%, #e0f2f1 50%, #e8eaf6 100%);
}

.feature-visual-devices {
  background: linear-gradient(135deg, #fff3e0 0%, #fce4ec 50%, #f3e5f5 100%);
}

.feature-visual-languages {
  background: linear-gradient(135deg, #e3f2fd 0%, #e8eaf6 50%, #ede7f6 100%);
}

/* Transcription Visual */
.feature-visual-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 60px;
}

.waveform-bar {
  width: 6px;
  background: linear-gradient(180deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 3px;
  animation: waveform 1.2s ease-in-out infinite;
}

.waveform-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.waveform-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { height: 55px; animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { height: 35px; animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { height: 45px; animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { height: 25px; animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { height: 15px; animation-delay: 0.8s; }

@keyframes waveform {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.6); }
}

.feature-visual-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 320px;
}

.term-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #4338ca;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

/* Security Visual */
.security-badge-large {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.security-badge-large i {
  width: 40px;
  height: 40px;
  color: white;
}

.security-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.security-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #059669;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.security-pill i {
  width: 14px;
  height: 14px;
}

/* Devices Visual */
.device-icons {
  display: flex;
  gap: var(--spacing-xl);
  justify-content: center;
}

.device-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: var(--spacing-lg);
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  min-width: 100px;
}

.device-icon i {
  width: 32px;
  height: 32px;
  color: #231645;
}

.device-icon span {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
}

/* Languages Visual */
.language-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 360px;
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #3730a3;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.lang-pill:last-child {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border-color: transparent;
}

/* Feature Showcase Responsive */
@media (max-width: 900px) {
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl) 0;
  }

  .feature-showcase-reverse {
    direction: ltr;
  }

  .feature-showcase-visual {
    order: -1;
  }

  .feature-showcase-heading {
    font-size: 32px;
  }

  .feature-showcase-description {
    max-width: 100%;
  }

  .device-icons {
    gap: var(--spacing-md);
  }

  .device-icon {
    padding: var(--spacing-md);
    min-width: 80px;
  }

  .device-icon i {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .features-showcase-section {
    padding: var(--spacing-2xl) 0;
  }

  .feature-showcase {
    padding: var(--spacing-xl) 0;
  }

  .feature-visual-terms,
  .language-flags {
    max-width: 100%;
  }

  .term-pill,
  .lang-pill,
  .security-pill {
    padding: 6px 10px;
    font-size: var(--font-size-xs);
  }
}

/* Testimonial Section - Wall of Love */
.testimonial-section {
  padding: 0 20px;
  margin: var(--spacing-3xl) 0;
}

.testimonial-wrapper {
  background: linear-gradient(180deg, #fefce8 0%, #ecfccb 50%, #f0fdf4 100%);
  border-radius: 56px;
  padding: 80px 40px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-header {
  margin-bottom: var(--spacing-xl);
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
}

.testimonial-badge i {
  width: 16px;
  height: 16px;
  color: #231645;
}

.testimonial-heading {
  font-family: 'Britti Sans', var(--font-family);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  color: #1e2a4a;
  margin-bottom: var(--spacing-md);
}

.testimonial-subtitle {
  font-size: var(--font-size-lg);
  color: #4a5578;
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: var(--spacing-xl) 0;
  color: #c4cad8;
}

.testimonial-divider span {
  width: 60px;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
  opacity: 0.5;
}

.testimonial-divider span:first-child,
.testimonial-divider span:last-child {
  width: 40px;
  opacity: 0.3;
}

.testimonial-divider i {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.testimonial-card {
  background-color: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.testimonial-quote {
  font-family: 'Britti Sans', var(--font-family);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #1e2a4a;
  margin-bottom: var(--spacing-xl);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
}

.testimonial-role {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* Testimonial Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    border-radius: 32px;
    padding: 60px 24px;
  }

  .testimonial-card {
    padding: var(--spacing-xl);
  }

  .testimonial-divider span {
    width: 30px;
  }

  .testimonial-divider span:first-child,
  .testimonial-divider span:last-child {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 0 16px;
  }

  .testimonial-wrapper {
    border-radius: 24px;
    padding: 40px 20px;
  }
}

/* Blog Post */
.post {
  max-width: var(--max-width-md);
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.post-header {
  margin-bottom: var(--spacing-2xl);
}

.post-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin-bottom: var(--spacing-md);
}

.post-meta-sep {
  margin: 0 6px;
}

.post-description {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-top: var(--spacing-md);
}

.post-content ul,
.post-content ol {
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--spacing-xl) 0;
}

.post-back {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.post-back a {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color 0.2s;
}

.post-back a:hover {
  color: var(--color-text-primary);
}

/* Blog Post Hero */
.hero-post {
  padding-bottom: var(--spacing-2xl);
}

.hero-post-has-image {
  padding-bottom: 180px;
}

.hero-post-has-image .hero-section-bg {
  padding-bottom: 340px;
}

@media (max-width: 768px) {
  .hero-post-has-image .hero-section-bg {
    padding-bottom: 200px;
  }
}

@media (max-width: 480px) {
  .hero-post-has-image {
    padding-bottom: var(--spacing-2xl);
  }

  .hero-post-has-image .hero-section-bg {
    padding-bottom: 80px;
  }
}

/* Blog Index */
.hero-blog {
  padding-bottom: var(--spacing-2xl);
}

.blog-hero-meta {
  font-size: var(--font-size-sm);
  color: #4c24a3;
  margin-top: var(--spacing-md);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.author-byline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-index-header {
  margin-bottom: var(--spacing-2xl);
}

.blog-index-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: var(--max-width-md);
  margin: 0 auto;
}

.blog-list-heading {
  max-width: var(--max-width-md);
  margin: 0 auto var(--spacing-xl);
}

.blog-list {
  max-width: var(--max-width-md);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-xl);
  background-color: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card.has-image {
  flex-direction: row;
  align-items: center;
  gap: var(--spacing-xl);
}

.blog-card-image {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .blog-card.has-image {
    flex-direction: column;
  }

  .blog-card-image {
    width: 100%;
    height: 180px;
  }
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(42, 3, 101, 0.15);
  opacity: 1;
}

.blog-card-meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin-top: var(--spacing-md);
  margin-bottom: 0;
  display: flex;
  align-items: center;
}

.blog-card-title {
  font-size: var(--font-size-2xl);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.blog-card-excerpt {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 8px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-link {
  color: #2a0365;
}

.blog-card-link svg {
  transition: transform 0.15s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(3px);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
}

.pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.pagination-link:hover {
  color: var(--color-text);
}

.pagination-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pagination-info {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

.blog-empty {
  padding: var(--spacing-3xl) 0;
}

.blog-empty p {
  font-size: var(--font-size-lg);
  color: var(--color-text-tertiary);
}

/* Promo Banner */
.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 3, 101, 0.06);
  border: 1px solid rgba(42, 3, 101, 0.12);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  text-decoration: none;
  margin-bottom: var(--spacing-lg);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.promo-banner:hover {
  background: rgba(42, 3, 101, 0.1);
  border-color: rgba(42, 3, 101, 0.2);
  transform: translateY(-1px);
}

.promo-banner-icon {
  width: 16px;
  height: 16px;
  color: #cf8aff;
}

.promo-banner-text {
  color: #2a0365;
}

.promo-banner-text strong {
  font-family: monospace;
  letter-spacing: 0.05em;
  color: #2a0365;
}

.promo-banner-arrow {
  color: #cf8aff;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .promo-banner {
    font-size: var(--font-size-xs);
    padding: 5px 12px;
    gap: 6px;
  }
}