
/* Main Stylesheet for Mundaine AI Landing Page */

/* CSS Variables */
:root {
  --primary-dark: #0b0b19;
  --primary-accent: #ae7ae5;
  --secondary-coral: #ffcbb9;
  --neutral-light: #eae7df;
  --white: #ffffff;
  
  /* Typography */
  --font-primary: 'Mona Sans', sans-serif;
  --font-accent: 'Rock Salt', cursive;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 4rem 0;
  --element-spacing: 2rem;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background: var(--primary-dark);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-light);
  margin-bottom: 3rem;
  opacity: 0.9;
}

.lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.rock-salt {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--primary-accent);
  line-height: 1.4;
}

.rock-salt.small {
  font-size: 0.75rem;
}

/* Container and Layout */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-accent);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Language Toggle */
.lang-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  background: rgba(11, 11, 25, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--primary-accent);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-primary);
  min-width: 48px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle:hover {
  background: var(--primary-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(174, 122, 229, 0.3);
}

.lang-toggle:focus {
  outline: 2px solid var(--primary-accent);
  outline-offset: 2px;
}

.lang-toggle:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .lang-toggle {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    min-width: 44px;
    min-height: 36px;
  }
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-accent) 0%, #9b6dd9 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(174, 122, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(174, 122, 229, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--primary-accent);
}

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

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-full-width {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(174, 122, 229, 0.1) 0%, var(--primary-dark) 70%);
  width: 100%;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.logo {
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo img {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 240px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.rock-salt-emphasis {
  font-family: var(--font-accent);
  color: var(--primary-accent);
  font-size: 1em;
  transform: rotate(-10deg) translateY(8px);
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  width: 100%;
}

.tagline {
  margin-top: 4rem;
  opacity: 0.8;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 500;
}

/* Floating Background Elements */
.hero-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: var(--primary-accent);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 70%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

/* Problem Section */
.problem-section {
  background: linear-gradient(135deg, rgba(174, 122, 229, 0.05) 0%, transparent 100%);
  padding: 6rem 0;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-points {
  margin: 3rem 0;
  text-align: left;
}

.problem-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-accent);
}

.point-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.point-text {
  font-size: 1.125rem;
  line-height: 1.6;
}

.problem-conclusion {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(174, 122, 229, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(174, 122, 229, 0.2);
}

/* Methodology Section */
.methodology-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.methodology-header {
  text-align: center;
  margin-bottom: 4rem;
}

.methodology-illustration {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.methodology-illustration img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(174, 122, 229, 0.3));
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.method-card {
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-accent);
}

.method-icon {
  margin-bottom: 2rem;
}

.stop-sign, .go-sign {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin: 0 auto;
}

.stop-sign {
  background: var(--primary-accent);
}

.go-sign {
  background: var(--primary-accent);
}

.method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-coral);
}

.method-features {
  list-style: none;
  margin-top: 1.5rem;
}

.method-features li {
  padding: 0.5rem 0;
  opacity: 0.9;
  position: relative;
  padding-left: 1.5rem;
}

.method-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary-coral);
  font-weight: 600;
}

/* Qualification Section */
.qualification-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(255, 203, 185, 0.05) 0%, transparent 100%);
}

.qualification-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.qualification-criteria {
  margin: 2rem 0;
}

.criteria-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.criteria-check {
  color: var(--primary-accent);
  font-weight: 700;
  font-size: 1.25rem;
}

.qualification-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(174, 122, 229, 0.1);
  border-radius: 8px;
  font-style: italic;
}

.selective-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 2px solid var(--primary-accent);
}

.badge-icon {
  font-size: 3rem;
}

.badge-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-accent);
}

.badge-subtitle {
  opacity: 0.8;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-flow {
  display: grid;
  gap: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--primary-accent);
  transition: var(--transition-smooth);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-accent) 0%, #9b6dd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-accent);
}

.step-duration {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--secondary-coral);
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(174, 122, 229, 0.1) 0%, rgba(255, 203, 185, 0.05) 100%);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cta-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-benefits {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.benefit-icon {
  font-size: 1.5rem;
}

/* Form Styles */
.discovery-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(174, 122, 229, 0.1);
}

.form-help {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.form-checkbox {
  margin-bottom: 1.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-accent);
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-accent);
  text-decoration: underline;
}

.checkbox-label a:hover {
  color: var(--secondary-coral);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--secondary-coral);
}

.alternative-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: rgba(255, 255, 255, 0.02);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  opacity: 1;
  color: var(--primary-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.6;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 2px solid var(--primary-accent);
  padding: 1rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max-width);
  margin: 0 auto;
  gap: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

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

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Additional info box styling */
.additional-info-box {
  background: rgba(174, 122, 229, 0.15);
  border: none;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(174, 122, 229, 0.05) 0%, transparent 100%);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-intro {
  max-width: 600px;
  margin: 1rem auto 0;
  opacity: 0.85;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-accent);
  background: rgba(255, 255, 255, 0.08);
}

.service-card.service-featured {
  border: 2px solid var(--primary-accent);
  background: rgba(174, 122, 229, 0.1);
}

.service-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary-accent);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--secondary-coral);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.service-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.service-duration {
  font-size: 0.9rem;
  opacity: 0.7;
}

.service-price {
  font-weight: 600;
  color: var(--primary-accent);
}

.service-best-for {
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
}

/* Services Guidance */
.services-guidance {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.services-guidance h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: var(--white);
}

.guidance-options {
  display: grid;
  gap: 1rem;
}

.guidance-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.guidance-item:hover {
  background: rgba(174, 122, 229, 0.1);
}

.guidance-situation {
  font-style: italic;
  opacity: 0.9;
}

.guidance-arrow {
  color: var(--primary-accent);
  font-weight: bold;
  font-size: 1.25rem;
}

.guidance-recommendation {
  font-weight: 600;
  color: var(--secondary-coral);
}

/* Assessment CTA */
.assessment-cta {
  background: linear-gradient(135deg, rgba(174, 122, 229, 0.15) 0%, rgba(255, 203, 185, 0.1) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(174, 122, 229, 0.3);
}

.assessment-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.assessment-text h3 {
  font-size: 1.25rem;
  color: var(--primary-accent);
  margin-bottom: 0.5rem;
}

.assessment-text p {
  opacity: 0.9;
  max-width: 500px;
}

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

  .guidance-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.5rem;
  }

  .guidance-arrow {
    transform: rotate(90deg);
  }

  .assessment-content {
    flex-direction: column;
    text-align: center;
  }

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

  .assessment-text p {
    max-width: 100%;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(174, 122, 229, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-card.testimonial-featured {
  border: 2px solid var(--primary-accent);
  background: rgba(174, 122, 229, 0.1);
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  position: relative;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-accent);
  opacity: 0.3;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  line-height: 1;
}

.testimonial-context {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.author-info {
  flex-grow: 1;
}

.author-role {
  font-weight: 600;
  color: var(--secondary-coral);
}

.author-company {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(174, 122, 229, 0.05) 0%, transparent 100%);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  margin-bottom: 3rem;
}

.about-intro p {
  margin-bottom: 1rem;
}

.about-credentials {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.credential-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.credential-badge:hover {
  border-color: var(--primary-accent);
  background: rgba(174, 122, 229, 0.1);
}

.credential-icon {
  font-size: 2rem;
}

.credential-title {
  font-weight: 600;
  color: var(--primary-accent);
  font-size: 1rem;
}

.credential-detail {
  font-size: 0.85rem;
  opacity: 0.7;
}

.about-philosophy {
  padding: 2rem;
  background: rgba(174, 122, 229, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(174, 122, 229, 0.2);
  text-align: center;
}

.about-philosophy p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

/* Responsive adjustments for testimonials and about */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-credentials {
    flex-direction: column;
    align-items: stretch;
  }

  .credential-badge {
    justify-content: flex-start;
  }
}
