/* 
===============================================
LokSahayak - Design System & Global Styles 
===============================================
*/

@import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Mukta:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
  /* Brand Colors */
  --primary-saffron: #E8571A;
  --primary-saffron-hover: #CC4B15;
  --secondary-green: #2D6A4F;
  --accent-ivory: #FFF8F0;
  --dark-charcoal: #1C1C1C;
  --text-dark: #222222;
  --text-light: #555555;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --border-color: #E2E8F0;
  
  /* Typography */
  --font-heading: 'Tiro Devanagari Hindi', serif;
  --font-subheading: 'Mukta', sans-serif;
  --font-body: 'Hind', sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* 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), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-float: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--accent-ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-charcoal);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-saffron);
  border-radius: var(--radius-md);
}

h3 {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary-saffron);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-saffron-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-saffron);
  border-color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--gray-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-saffron);
  border-color: var(--primary-saffron);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Top Bar */
.top-bar {
  background-color: var(--dark-charcoal);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-bar a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar a:hover {
  color: var(--primary-saffron);
}

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--dark-charcoal);
  font-weight: 700;
}

.logo span {
  color: var(--primary-saffron);
}

.logo-subtext {
  font-family: var(--font-subheading);
  font-size: 0.75rem;
  color: var(--text-light);
  display: block;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-subheading);
  font-weight: 600;
  color: var(--dark-charcoal);
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-saffron);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-charcoal);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: left var(--transition-normal);
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu ul a {
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  display: none;
}

.overlay.active {
  display: block;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--transition-fast);
  animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Google Translate Override */
.goog-te-gadget {
  font-family: var(--font-body) !important;
  color: var(--white) !important;
}
.goog-te-gadget .goog-te-combo {
  padding: 4px;
  border-radius: 4px;
  border: none;
  font-family: var(--font-body);
}
.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0 !important;
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-float);
  border-color: var(--primary-saffron);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--accent-ivory);
  border-radius: 50%;
  color: var(--primary-saffron);
}

.card-title {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.card-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.card-body {
  flex-grow: 1;
}

.card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.arrow-link {
  color: var(--primary-saffron);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.arrow-link:hover {
  gap: 10px; /* Micro-animation */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-color: var(--dark-charcoal);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://assets.zyrosite.com/m2Wap0NL0LFLR202/whatsapp-image-2025-03-30-at-13.08.15-1-YZ98xWBJ4ji9EKxK.jpeg');
    background-size: cover;
  background-position: center;
  opacity: 0.3;
}

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

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 10px;
}

.hero .english-headline {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--primary-saffron);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--gray-light);
  max-width: 600px;
}

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

/* Trust Strip */
.trust-strip {
  background-color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.trust-chip {
  background-color: var(--accent-ivory);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-green);
  transition: all var(--transition-fast);
  border: 1px solid rgba(45, 106, 79, 0.2);
}

.trust-chip:hover {
  background-color: var(--secondary-green);
  color: var(--white);
}

/* Instant Help Bar */
.instant-help-bar {
  background-color: var(--primary-saffron);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

.instant-help-bar h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.instant-help-bar p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-subheading);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-saffron);
  box-shadow: 0 0 0 3px rgba(232, 87, 26, 0.1);
}

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

.form-status-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-status-message[hidden] {
  display: none;
}

.form-status-message--success {
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--secondary-green);
}

.form-status-message--error {
  background-color: rgba(232, 87, 26, 0.1);
  color: var(--primary-saffron-hover);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Footer */
.footer {
  background-color: var(--dark-charcoal);
  color: var(--gray-light);
  padding: 60px 0 20px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-subheading);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--gray-light);
}

.footer-links a:hover {
  color: var(--primary-saffron);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all var(--transition-fast);
}

.social-icons a:hover {
  background-color: var(--primary-saffron);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .english-headline {
    font-size: 1.5rem;
  }
  
  .top-bar .container {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* Custom Language Selector */
.lang-selector {
  position: relative;
  display: inline-block;
  font-family: var(--font-main);
  z-index: 2500;
}

.lang-selector__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--primary-saffron);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  line-height: 1;
}

.lang-selector__trigger:hover,
.lang-selector.is-open .lang-selector__trigger {
  background: var(--primary-saffron);
  color: var(--white);
}

.lang-selector__trigger .fa-globe {
  font-size: 0.95rem;
}

.lang-selector__chevron {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

.lang-selector.is-open .lang-selector__chevron {
  transform: rotate(180deg);
}

.lang-selector__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  max-height: 320px;
  overflow-y: auto;
  background: var(--white);
  color: var(--dark-charcoal);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  padding: 6px 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2600;
}

.lang-selector.is-open .lang-selector__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-selector__menu li {
  padding: 9px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.lang-selector__menu li:hover {
  background: rgba(232, 87, 26, 0.08);
}

.lang-selector__menu li.is-active {
  border-left-color: var(--primary-saffron);
  color: var(--primary-saffron);
  font-weight: 600;
}

/* Hide default Google Translate chrome but keep it functional */
#google_translate_element {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

/* ==========================================
   Hero "and more" disclosure
   ========================================== */
.hero-more {
  margin-top: 20px;
  max-width: 600px;
}
.hero-more summary {
  cursor: pointer;
  color: var(--gray-light);
  font-family: var(--font-subheading);
  font-size: 1rem;
  list-style: none;
  display: inline-block;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.4);
}
.hero-more summary::-webkit-details-marker { display: none; }
.hero-more[open] summary { color: var(--primary-saffron); }
.hero-more .hero-sub {
  margin-top: 15px;
}
.btn-hero-primary {
  font-size: 1.15rem;
  padding: 16px 32px;
}

/* ==========================================
   Credibility Ribbon
   ========================================== */
.credibility-ribbon {
  background-color: var(--secondary-green);
  color: var(--white);
  padding: 12px 0;
  font-size: 0.92rem;
  font-family: var(--font-subheading);
}
.credibility-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
}
.credibility-ribbon a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.credibility-ribbon .source-link {
  font-size: 0.8rem;
  opacity: 0.85;
  text-decoration: none;
  margin-left: 4px;
}
.credibility-ribbon .dot {
  opacity: 0.5;
}

/* ==========================================
   Research Strip
   ========================================== */
.research-strip {
  background-color: var(--accent-ivory);
}
.research-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--text-light);
}
.research-stats .stat-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-saffron);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-number {
  font-family: var(--font-accent);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-saffron);
  line-height: 1.1;
}
.stat-number .stat-unit {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 500;
}
.stat-label {
  font-size: 0.98rem;
  color: var(--dark-charcoal);
  font-weight: 600;
}
.stat-label-en {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}
.source-link {
  font-size: 0.78rem;
  color: var(--secondary-green);
  font-weight: 600;
  margin-top: auto;
}
.source-link:hover {
  text-decoration: underline;
}

.cascade-heading {
  text-align: center;
  margin-top: 60px;
  font-size: 1.4rem;
  color: var(--dark-charcoal);
}
.cascade-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 30px;
}
.cascade-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}
.cascade-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  min-width: 160px;
  max-width: 200px;
  text-align: center;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cascade-step.broken {
  border-color: #e74c3c;
  background: #fff5f3;
}
.cascade-step.fixed {
  border-color: var(--secondary-green);
  background: #e8f5ef;
}
.cascade-icon {
  font-size: 1.8rem;
}
.cascade-text {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-dark);
}
.cascade-arrow {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: var(--primary-saffron);
  font-weight: 700;
}

/* ==========================================
   Impact section: map + methodology
   ========================================== */
.impact-since {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--gray-light);
  font-weight: 400;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: center;
}
.india-map {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.map-caption {
  text-align: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 10px;
  margin-bottom: 0;
}
.methodology-note {
  max-width: 760px;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--primary-saffron);
  border-radius: var(--radius-md);
  padding: 6px 18px;
  text-align: left;
}
.methodology-note summary {
  cursor: pointer;
  font-family: var(--font-subheading);
  font-weight: 600;
  color: var(--white);
  padding: 10px 0;
  list-style: none;
}
.methodology-note summary::-webkit-details-marker { display: none; }
.methodology-note summary::before {
  content: '▸ ';
  color: var(--primary-saffron);
  display: inline-block;
  transition: transform 0.2s;
}
.methodology-note[open] summary::before {
  content: '▾ ';
}
.methodology-body {
  padding: 6px 0 14px;
  color: var(--gray-light);
  font-size: 0.92rem;
}
.methodology-body p { margin-bottom: 10px; }
.methodology-fineprint { font-size: 0.85rem; opacity: 0.85; }

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

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-card {
  background-color: var(--white);
}
.testimonial-tag {
  font-size: 0.8rem;
  background-color: var(--gray-light);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
  align-self: flex-start;
}
.testimonial-quote {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.testimonial-outcome {
  background: #e8f5ef;
  color: var(--secondary-green);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
}
.testimonial-outcome i {
  margin-right: 6px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}
.testimonial-meta img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.testimonial-loc {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ==========================================
   FAQ Strip
   ========================================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--accent-ivory);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  padding: 0 22px;
  transition: box-shadow var(--transition-fast);
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-saffron);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-subheading);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: var(--dark-charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary-saffron);
  font-weight: 400;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 0 18px;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq-item a {
  color: var(--primary-saffron);
  text-decoration: underline;
}

/* ==========================================
   Pain mirror — "You're not alone" tiles
   ========================================== */
.problem-section .problem-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.6;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.problem-tile {
  background-color: var(--accent-ivory);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 132px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
}
.problem-tile:hover {
  transform: translateY(-3px);
  border-color: var(--primary-saffron);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}
.problem-tile:focus-visible {
  outline: 3px solid var(--primary-saffron);
  outline-offset: 2px;
}
.problem-icon {
  font-size: 2rem;
  line-height: 1;
}
.problem-hi {
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark-charcoal);
  line-height: 1.35;
}
.problem-en {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.4;
}
.problem-tile.catch-all {
  background-color: rgba(232, 87, 26, 0.08);
  border-color: var(--primary-saffron);
  border-style: dashed;
}
.problem-tile.catch-all .problem-en {
  color: var(--primary-saffron);
  font-weight: 600;
}

/* ==========================================
   "It's this simple" — 4-step process
   ========================================== */
.process-section .process-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.05rem;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
}
.process-step {
  text-align: center;
  padding: 26px 20px;
}
.process-step .card-icon {
  margin: 0 auto 14px;
}
.process-step .card-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
  color: var(--primary-saffron);
  font-weight: 700;
  margin-bottom: 6px;
}
.process-step .card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(45, 106, 79, 0.1);
  color: var(--secondary-green);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin: 0 auto 14px;
  align-self: center;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-saffron);
  font-weight: 700;
  opacity: 0.6;
}
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 4px 0;
  }
}

