/* ----------------------------------------------------
   CONNECTSTREAM.IO - VIBRANT GREEN 3-CARD THEME (#21d06c)
   ---------------------------------------------------- */

:root {
  --vibrant-green: #21d06c;
  --vibrant-green-hover: #1cb85f;
  --vibrant-green-dark: #169b4e;
  --vibrant-green-light: rgba(33, 208, 108, 0.12);

  --primary-green: var(--vibrant-green);
  --primary-green-hover: var(--vibrant-green-hover);
  --primary-green-light: var(--vibrant-green-light);
  --primary-green-border: rgba(33, 208, 108, 0.35);

  --dark-slate: #0F172A;
  --dark-slate-hover: #1E293B;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --bg-light: #F8FAFC;

  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px; /* rounded-3xl */
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-green: 0 20px 30px -5px rgba(33, 208, 108, 0.35), 0 10px 15px -5px rgba(33, 208, 108, 0.15);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--dark-slate);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  line-height: 1.5;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.text-center {
  text-align: center;
}

.desktop-only {
  display: block;
}

@media (max-width: 768px) {
  .desktop-only {
    display: inline;
  }
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--dark-slate);
}

.gradient-text {
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--vibrant-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Announcement Bar (Compact py-1.5) */
.announcement-bar {
  background-color: var(--dark-slate);
  color: #FFFFFF;
  padding: 6px 0;
  font-size: 0.825rem;
  font-weight: 500;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-mini {
  background-color: var(--vibrant-green);
  color: #FFFFFF;
  font-size: 0.675rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-link {
  color: #4ADE80;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
}

.announcement-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

/* Navigation Bar (Standard h-16 / 64px Height) */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.dual-brand-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  text-align: left !important;
}

.brand-logo-icon {
  max-height: 40px;
  height: 38px;
  width: auto;
  display: block;
  background-color: transparent !important;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text-group-exact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  text-align: left !important;
}

.title-stacked {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.text-connect {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #21d06c;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.text-stream {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #034b45;
  letter-spacing: -0.015em;
  white-space: nowrap;
  margin-top: -1px;
}

.text-tagline {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 700;
  color: #034b45;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-top: 3px;
}

.brand-divider {
  border-left: 1px solid #e5e7eb;
  height: 36px;
  width: 0;
  flex-shrink: 0;
}

.meta-partner-img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  background-color: transparent !important;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-block {
  margin-bottom: 14px;
}

.text-stream-footer {
  color: #FFFFFF !important;
}

.brand-tagline-footer {
  color: #94A3B8 !important;
  opacity: 1 !important;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dot {
  color: var(--vibrant-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger Toggle Button (Mobile Only) */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  outline: none;
  flex-shrink: 0;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: #034b45;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* Active Hamburger State (Transforms to X) */
.hamburger-btn.active .hamburger-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: #21d06c;
}

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

.hamburger-btn.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: #21d06c;
}

/* Mobile Slide-Down Navigation Menu Drawer */
.mobile-menu-drawer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.mobile-menu-drawer.hidden {
  display: none !important;
}

.mobile-menu-content {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #034b45;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #21d06c;
}

.mobile-menu-divider {
  height: 1px;
  background-color: #E2E8F0;
  margin: 6px 0 10px;
}

.mobile-actions-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-hero {
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 20px rgba(33, 208, 108, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--dark-slate);
}

.btn-ghost:hover {
  background-color: var(--slate-100);
}

.btn-ghost-white {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-primary {
  background-color: var(--dark-slate);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--dark-slate-hover);
  transform: translateY(-1px);
}

.btn-green {
  background-color: var(--vibrant-green);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(33, 208, 108, 0.35);
}

.btn-green:hover {
  background-color: var(--vibrant-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 208, 108, 0.45);
}

/* White CTA Button for All Green Cards (Green Text #21d06c) */
.btn-white-cta {
  background-color: #FFFFFF !important;
  color: #21d06c !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all var(--transition-fast);
}

.btn-white-cta:hover {
  background-color: #F8FAFC !important;
  color: #1cb85f !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* Section Header Styles */
.pricing-hero-section {
  position: relative;
  padding: 64px 0 96px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-light) 100%);
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}

.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.bg-glow-left {
  top: -100px;
  left: -150px;
  background: rgba(33, 208, 108, 0.2);
}

.bg-glow-right {
  top: 100px;
  right: -150px;
  background: rgba(16, 185, 129, 0.15);
}

.hero-header {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto 50px;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: var(--vibrant-green-light);
  border: 1px solid var(--primary-green-border);
  color: var(--vibrant-green-dark);
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.pill-dark {
  background-color: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--dark-slate);
}

.main-headline {
  font-size: 3rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.sub-headline {
  font-size: 1.2rem;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 36px;
}

/* Billing Switcher Toggle */
.billing-switcher-container {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #FFFFFF;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.billing-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-500);
  transition: var(--transition-fast);
}

.billing-label.active {
  color: var(--dark-slate);
}

.billing-label-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.save-badge {
  background-color: #ECFDF5;
  color: #047857;
  border: 1px solid #A7F3D0;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
}

/* Toggle Switch Styling */
.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--slate-300, #CBD5E1);
  transition: 0.3s;
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider-round {
  background-color: var(--vibrant-green);
}

input:checked + .slider-round:before {
  transform: translateX(24px);
}

/* 3-CARD VIBRANT GREEN PRICING GRID SYSTEM (#21d06c) */
.pricing-cards-grid.grid-3-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.pricing-card.green-card {
  background: #21d06c;
  color: #FFFFFF;
  border-radius: 24px; /* rounded-3xl / 24px */
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-green);
  transition: all var(--transition-normal);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.pricing-card.green-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px -5px rgba(33, 208, 108, 0.45);
}

/* Elevated Pro Card */
.pricing-card.card-popular-green {
  transform: scale(1.04);
  border: 2.5px solid #FFFFFF;
  z-index: 2;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(33, 208, 108, 0.4);
}

.pricing-card.card-popular-green:hover {
  transform: scale(1.06) translateY(-6px);
}

.card-title-vibrant {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.card-price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-period {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.card-billing-cycle {
  font-family: var(--font-family);
  font-size: 0.775rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-top: 8px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

/* FEATURE CONVERSATIONS GRID SECTION */
.feature-conversations-section {
  background-color: #f9fafb;
  padding: 80px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.highlight-green {
  color: #21d06c;
}

.feature-headline {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.feature-subheadline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #4b5563;
  margin-top: 10px;
}

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

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

.conversation-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px; /* rounded-2xl */
  padding: 32px 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.conversation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(33, 208, 108, 0.12);
  border-color: rgba(33, 208, 108, 0.3);
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(33, 208, 108, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card-feature-desc {
  font-family: var(--font-family);
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.6;
}

.savings-tag-white {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.price-box.price-white {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 12px;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.price-white .currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
}

.price-white .price-value {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: #FFFFFF;
}

.price-white .price-period {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.price-subtext-white {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

/* Card Features (Clean White Bulleted List) */
.card-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-list-white {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list-white li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #FFFFFF;
  line-height: 1.4;
  font-weight: 500;
}

.bullet-dot {
  color: #FFFFFF;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

/* Trust Footer */
.trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-600);
  text-align: center;
}

.trust-item svg {
  flex-shrink: 0;
}

/* SECTION 3: REPLACES POINT SOLUTIONS BANNER */
.replaces-section {
  padding: 96px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.section-headline {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subheadline {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 680px;
  margin: 0 auto 56px;
}

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

.replace-card {
  background-color: var(--bg-light);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
}

.replace-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-green-border);
  box-shadow: var(--shadow-md);
}

.replace-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--slate-200);
}

.replaced-tool {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
}

.logo-wati { background: #25D366; }
.logo-manychat { background: #0084FF; }
.logo-intercom { background: #1F8CEB; }
.logo-typeform { background: #262627; }
.logo-mailchimp { background: #FFE01B; color: #262627; font-size: 1.2rem; }
.logo-zendesk { background: #03363D; }

.tool-info {
  display: flex;
  flex-direction: column;
}

.tool-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-slate);
}

.tool-price-tag {
  font-size: 0.75rem;
  color: #EF4444;
  font-weight: 600;
  text-decoration: line-through;
}

.vs-arrow {
  color: var(--slate-400);
  font-weight: 700;
}

.replaced-by {
  background-color: var(--vibrant-green-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.replaced-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--vibrant-green-dark);
}

.replace-feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark-slate);
}

.replace-feature-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* Savings Calculator Box */
.savings-calculator-box {
  background: linear-gradient(135deg, var(--dark-slate) 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}

.savings-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  color: #4ADE80;
  letter-spacing: 0.08em;
}

.savings-headline {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 6px 0 10px;
}

.strikethrough {
  text-decoration: line-through;
  color: #94A3B8;
}

.savings-desc {
  color: #CBD5E1;
  font-size: 1rem;
}

/* SECTION 4: TESTIMONIALS MASONRY GRID */
.testimonials-section {
  padding: 96px 0;
  background-color: var(--bg-light);
}

.testimonials-masonry {
  column-count: 3;
  column-gap: 24px;
}

@media (max-width: 992px) {
  .testimonials-masonry {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .testimonials-masonry {
    column-count: 1;
  }
}

.testimonial-card {
  break-inside: avoid;
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

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

.testimonial-rating {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--slate-200);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-slate);
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-icon {
  color: var(--vibrant-green-dark);
  font-size: 0.8rem;
}

.author-handle {
  font-size: 0.775rem;
  color: var(--slate-400);
}

/* SECTION 5: FAQ ACCORDION */
.faq-section {
  padding: 96px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--slate-200);
}

.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-light);
  transition: var(--transition-fast);
}

.faq-item.active {
  border-color: var(--primary-green-border);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-slate);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--vibrant-green-dark);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* SECTION 5 (PART 2): DARK BOTTOM HERO BANNER */
.bottom-hero-section {
  padding: 80px 0 96px;
  background-color: var(--bg-light);
}

.dark-cta-card {
  position: relative;
  background: linear-gradient(135deg, #0F172A 0%, #064E3B 100%);
  border-radius: var(--radius-xl);
  padding: 72px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(33, 208, 108, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
  pointer-events: none;
}

.dark-cta-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.badge-green {
  background-color: var(--vibrant-green);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}

.dark-cta-headline {
  font-size: clamp(1.3rem, 5.2vw, 2.5rem);
  color: #FFFFFF;
  margin: 16px 0 12px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 12px;
  width: 100%;
  box-sizing: border-box;
}

.dark-cta-subhead {
  font-size: 1.1rem;
  color: #CBD5E1;
  margin-bottom: 36px;
}

.dark-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.875rem;
  color: #94A3B8;
  flex-wrap: wrap;
}

/* Footer (Pure White Theme - Compact Centered Layout) */
.site-footer {
  background-color: #FFFFFF;
  color: #4B5563;
  padding: 48px 0 24px;
  border-top: 1px solid #E2E8F0;
}

.footer-container.footer-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  text-align: center;
}

.footer-brand.footer-brand-centered {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.footer-brand-block {
  margin-bottom: 12px;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4B5563;
  text-align: center;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid #F1F5F9;
  font-size: 0.825rem;
  color: #64748B;
  text-align: center;
}

/* /* Modal Dialog (100% Responsive) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-sizing: border-box;
  overflow-y: auto;
  opacity: 1;
  transition: opacity var(--transition-normal);
}

.modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-card {
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform var(--transition-fast);
  box-sizing: border-box;
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.hidden .modal-card {
  transform: translateY(20px);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--slate-400);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}

.modal-close:hover {
  color: var(--dark-slate);
  background-color: var(--slate-100);
}

.modal-header {
  margin-bottom: 20px;
  padding-right: 20px;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin: 10px 0 6px;
  color: var(--dark-slate);
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.modal-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
}

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

.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus {
  border-color: var(--vibrant-green);
  box-shadow: 0 0 0 3px rgba(33, 208, 108, 0.2);
}

.modal-footer-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 16px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--dark-slate);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.3s ease-out forwards;
  border-left: 4px solid var(--vibrant-green);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Media Queries (Laptops, Tablets, & Mobile Phones) */
@media (max-width: 1024px) {
  .pricing-cards-grid.grid-3-cards {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 540px;
    margin: 0 auto;
  }

  .pricing-card.card-popular-green {
    transform: none;
  }
  
  .pricing-card.card-popular-green:hover {
    transform: translateY(-6px);
  }

  .conversations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 769px) {
  .hamburger-btn {
    display: none !important;
  }
  .mobile-menu-drawer {
    display: none !important;
  }
  .desktop-only {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .hamburger-btn {
    display: flex !important;
  }

  /* Compact Mobile Header */
  .navbar-header {
    height: auto;
    min-height: 60px;
    padding: 8px 0;
  }

  .navbar-container {
    padding: 0 16px;
  }

  .dual-brand-container {
    gap: 10px;
  }

  .brand-block {
    gap: 8px;
  }

  .brand-logo-icon {
    height: 32px;
    max-height: 32px;
  }

  .text-connect, .text-stream {
    font-size: 15px;
  }

  .text-tagline {
    font-size: 9.5px;
  }

  .brand-divider {
    height: 28px;
  }

  .meta-partner-img {
    height: 32px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-ghost {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .nav-actions .btn-primary {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  /* Hero & Headlines */
  .hero-header {
    margin-bottom: 36px;
  }

  .main-headline {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .sub-headline {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  /* Features Grid */
  .feature-conversations-section {
    padding: 56px 0;
  }

  .feature-headline {
    font-size: 1.75rem;
  }

  .feature-subheadline {
    font-size: 0.95rem;
  }

  .conversations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }

  .conversation-card {
    padding: 24px 20px;
    border-radius: 14px;
  }

  /* Trust Footer */
  .trust-footer {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 36px;
    width: 100%;
  }

  .trust-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    font-size: 0.825rem;
  }

  .trust-item svg {
    flex-shrink: 0;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 24px;
  }

  .footer-brand.footer-brand-centered {
    max-width: 100%;
    padding: 0 16px;
  }

  .footer-tagline {
    font-size: 0.875rem;
  }

  /* Bottom Dark CTA Card Mobile Fix */
  .dark-cta-card {
    padding: 44px 20px;
    border-radius: 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .dark-cta-headline {
    font-size: 1.65rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-align: center;
    padding: 0 4px;
    margin: 16px 0 12px;
  }

  .dark-cta-subhead {
    font-size: 0.95rem;
    padding: 0 4px;
  }

  .dark-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .dark-cta-actions .btn {
    width: 100%;
    box-sizing: border-box;
  }

  /* Modal */
  .modal-overlay {
    padding: 12px;
  }

  .modal-card {
    padding: 24px 18px;
    max-width: 100%;
    width: 100%;
    border-radius: 16px;
    box-sizing: border-box;
  }

  .modal-title {
    font-size: 1.15rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  /* Extra Small Devices */
  .announcement-bar {
    font-size: 0.75rem;
    padding: 6px 12px;
    text-align: center;
  }

  .announcement-content {
    gap: 6px;
  }

  .brand-divider {
    display: none; /* Hide divider line on tight screens */
  }

  .meta-partner-block {
    display: none; /* Hide meta logo on small mobile screens to keep header clean */
  }

  .brand-logo-icon {
    height: 30px;
  }

  .text-connect, .text-stream {
    font-size: 14px;
  }

  .text-tagline {
    font-size: 8.5px;
  }

  .main-headline {
    font-size: 1.6rem;
  }

  .pricing-card.green-card {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .price-amount {
    font-size: 32px;
  }

  .modal-card {
    padding: 20px 16px;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .dark-cta-card {
    padding: 32px 16px;
    border-radius: 16px;
  }

  .dark-cta-headline {
    font-size: 1.45rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 0;
  }
}
