/* =====================================================
   NUZUR LANDING - Combined CSS
   ===================================================== */

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

:root {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #213547;
  background-color: #FBFFE7;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background-color: #FBFFE7;
  color: #213547;
  overflow-x: hidden;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

h1.page-title {
  text-align: center;
}

a {
  font-weight: 500;
  color: #FE11EF;
  text-decoration: none;
}

a:hover {
  color: #E000D6;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

button {
  border-radius: 0.5rem;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  outline: none;
}

button:focus-visible {
  outline: 2px solid #FE11EF;
  outline-offset: 2px;
}

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

/* === Navigation === */
.navigation {
  background-color: #FBFFE7;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-image {
  height: 40px;
  width: auto;
}

.nav-logo:hover { color: #FE11EF; }

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  border-right: 1px solid #EEE;
  padding-right: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: color 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background-color: #FE11EF;
}

.login-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem !important;
}

.login-icon-link svg {
  width: 20px;
  height: 20px;
}

.login-icon-link:hover svg { stroke: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.nav-overlay { display: none; }

@media (max-width: 1024px) {
  .nav-links { gap: 1rem; }
  .nav-links a { padding: 0.5rem 0.75rem; font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .nav-container { padding: 1rem; flex-wrap: nowrap; }
  .hamburger { display: flex; }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .nav-right {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background-color: #FBFFE7;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 5rem 2rem 2rem;
    gap: 2rem;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-right.open { right: 0; }

  .nav-links {
    flex-direction: column;
    gap: 0;
    border-right: none;
    padding-right: 0;
    width: 100%;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    text-align: left;
    border-radius: 0.5rem;
  }

  .logo-image { height: 32px; }
  .nav-logo { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0.75rem 1rem; }
  .nav-right { width: 75%; max-width: 280px; }
  .logo-image { height: 28px; }
  .nav-logo { font-size: 1.125rem; }
}

/* === Language Switcher === */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  padding: 0.2rem;
  background-color: #E7EBD4;
  color: #666;
  border-radius: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  border-bottom: 1.5px solid transparent;
}

.lang-btn:hover {
  color: #494848;
  border-bottom: 1.5px solid #666;
}

.lang-btn.active {
  color: #FE11EF;
  border-bottom: 1.5px solid #FE11EF;
}

@media (max-width: 768px) {
  .lang-btn { padding: 0.3rem 0.65rem; font-size: 0.75rem; }
}

/* === Footer === */
.footer {
  background-color: #FFE6F9;
  color: #000;
  padding: 3rem 2rem 1.5rem;
  margin-top: auto;
}

.footer-container { max-width: 1200px; margin: 0 auto; }

.footer-content {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #FE11EF;
}

.footer-section h3,
.footer-section h4 { margin-bottom: 1rem; color: #000; font-weight: 600; }

.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-logo-image { height: 32px; width: auto; }

.footer-description {
  color: #666;
  line-height: 1.6;
  font-size: 0.875rem;
  max-width: 250px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: #666; text-decoration: none; transition: color 0.2s; font-size: 0.875rem; }
.footer-links a:hover { color: #FE11EF; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-copyright { color: #666; font-size: 0.875rem; }

.footer-social { display: flex; gap: 1.5rem; }

.footer-social a {
    color: #666;
    text-decoration: none;
    transition: color .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a svg { width: 24px; height: 24px; }
.footer-social a:hover { color: #FE11EF; transform: translateY(-2px); }

@media (max-width: 1024px) {
  .footer-content { grid-template-columns: repeat(3, 1fr); }
  .footer-section:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .footer { padding: 2rem 1.5rem 1.25rem; }
  #footer-logo-section { display: none; }
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; }
  .footer-section:first-child { grid-column: 1 / -1; margin-bottom: 0.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.875rem; text-align: center; padding-top: 1rem; }
  .footer-social { gap: 1.25rem; }
}

@media (max-width: 480px) {
  .footer { padding: 1.5rem 1rem 1rem; }
  .footer-content { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom { padding-top: 0.875rem; gap: 0.75rem; }
  .footer-social { gap: 1rem; }
}

/* === Buttons === */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: inherit;
}

.btn-primary { background-color: #FE11EF; color: #fff; font-weight: 600; }
.btn-primary:hover { background-color: #E000D6; color: #fff; transform: translateY(-1px); }

.btn-secondary { background-color: transparent; color: #000; border: 2px solid #000; }
.btn-secondary:hover { background-color: #000; color: #E4FF1A; }

.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }

.btn-outline { background-color: transparent; color: #000; border: 2px solid #000; }
.btn-outline:hover { background-color: #000; color: #E4FF1A; }

/* === Sign Up Module (CTA Section) === */
.cta-section {
  padding: 4rem 2rem;
  background: #E000D6;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .container { text-align: center; }

.cta-section h2 { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; }
.cta-section p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-section .btn-primary { background-color: #fff; color: rgb(118, 76, 165); }
.cta-section .btn-primary:hover { background-color: #E4FF1A; color: #000; }

.mascot-image { width: 300px; position: absolute; right: -100px; top: -7px; }

@media (max-width: 768px) {
  .cta-section { padding: 3rem 1rem; }
  .cta-section h2 { font-size: 2.25rem; }
  .mascot-image { display: block; position: relative; margin: 0 auto; right: 0; top: 0; width: 200px; }
}

/* === Section Titles === */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 3rem;
  color: #111827;
}

.page-title { font-size: 3rem; font-weight: bold; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* === Hero Gradient === */
.features-hero,
.pricing-hero,
.support-hero,
.blog-hero,
.docs-hero,
.about-hero,
.assistant-limit-hero {
  background: linear-gradient(rgb(104, 125, 232) 0%, rgb(118, 76, 165) 100%);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.blog-post-header,
.doc-header {
  background: linear-gradient(rgb(104, 125, 232) 0%, rgb(118, 76, 165) 100%);
  color: #fff;
  padding: 3rem 2rem;
  text-align: left;
}

.doc-sidebar {  
  color: #333;
  padding: 2rem;
  float: left;
  width: 28%;
}

ul.sidebar-links{
  margin-left: 5px;
  padding: 10px 0px;
  padding-bottom: 20px;
  list-style: none;
}

.sidebar-links li {
  margin-bottom: 4px;
}

.sidebar-link {
  background-color:#EEE;
  color:#333;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 3px;
  display: inline-block;
}

.sidebar-link.active{
  background-color: #FE11EF;
  color: #FFF;
  
}

@media (max-width: 1200px) {
  .doc-sidebar {
    display: none;
  }

  article.doc-content.markdown-content {
    margin: auto;
    display: block;
  }
}

/* === HOME === */
.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content { flex: 1; }

.hero-title { font-size: 3.5rem; font-weight: bold; margin-bottom: 1.5rem; color: #111827; line-height: 1.2; }
.brand-name { color: #FE11EF; }
.hero-subtitle { font-size: 1.25rem; color: #6b7280; margin-bottom: 2rem; line-height: 1.6; }
.hero-buttons { display: flex; gap: 1rem; }

.hero-image { flex: 1; display: flex; justify-content: center; align-items: center; }

.features-preview { background-color: #fff; padding: 4rem 2rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: #FBFFE7;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.feature-icon { font-size: 4.5rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 1.25rem; font-weight: bold; margin-bottom: 1rem; color: #111827; }
.feature-card p { color: #6b7280; line-height: 1.6; }

@media (max-width: 1024px) {
  .hero { gap: 3rem; padding: 3rem 2rem; }
  .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 2rem 1rem; gap: 2rem; min-height: auto; }
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .features-preview { padding: 3rem 1rem; }
  .section-title { font-size: 1.875rem; }
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 1.5rem 1rem; }
  .hero-title { font-size: 1.875rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn { padding: 0.625rem 1.5rem; font-size: 0.9375rem; }
  .btn-large { padding: 0.875rem 2rem; font-size: 1rem; }
  .section-title { font-size: 1.625rem; }
  .feature-card { padding: 1.5rem; }
}

/* === FEATURES === */
.features-page { min-height: 100vh; }
.features-detailed { padding: 4rem 2rem; }

.feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-row-reverse { flex-direction: row-reverse; }
.feature-content { flex: 1; text-align: left; }
.feature-content h2 { font-size: 2rem; font-weight: bold; margin-bottom: 1rem; color: #111827; }
.feature-content p { font-size: 1.1rem; color: #6b7280; line-height: 1.6; margin-bottom: 1.5rem; }

.feature-list { list-style: none; padding: 0; text-align: left; }
.feature-list li { padding: 0.5rem 0; color: #374151; position: relative; padding-left: 1.5rem; line-height: 20px; }
.feature-list li svg {
  margin-right: 6px;
  margin-top: 2px;
  float: left;
}

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

.image-slider { width: 100%; max-width: 600px; }

.slider-container {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: #f3f4f6;
}

.slider-image { width: auto; height: 400px; display: inline-block; object-fit: cover; }

.slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  color: #FE11EF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  line-height: 48px;
}

.slider-button:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-button:active { transform: translateY(-50%) scale(0.95); }
.slider-button-prev { left: 1rem; }
.slider-button-next { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot:hover { background: rgba(255, 255, 255, 0.8); transform: scale(1.2); }
.slider-dot.active { background: #FE11EF; border-color: #FE11EF; transform: scale(1.2); }

.features-grid-section { background-color: #fff; padding: 4rem 2rem; }

.additional-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.additional-feature {
  background: #FBFFE7;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.additional-feature:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.additional-feature h3 { font-size: 1.25rem; font-weight: bold; margin-bottom: 1rem; color: #111827; }
.additional-feature p { color: #6b7280; line-height: 1.6; }

@media (max-width: 1024px) {
  .feature-row { gap: 3rem; }
  .feature-content h2 { font-size: 1.75rem; }
}

@media (max-width: 768px) {
  .features-hero { padding: 3rem 1rem; }
  .page-title { font-size: 2.25rem; }
  .page-subtitle { font-size: 1.1rem; }
  .features-detailed { padding: 3rem 1rem; }
  .feature-row, .feature-row-reverse { flex-direction: column; text-align: center; gap: 2rem; margin-bottom: 3rem; }
  .feature-content h2 { font-size: 1.5rem; }
  .feature-content p { font-size: 1rem; }
  .feature-list { text-align: left; max-width: 400px; margin: 0 auto; }
  .image-slider { max-width: 100%; }
  .slider-button { width: 40px; height: 40px; font-size: 1.5rem; }
  .slider-button-prev { left: 0.5rem; }
  .slider-button-next { right: 0.5rem; }
  .slider-dot { width: 10px; height: 10px; }
  .features-grid-section { padding: 3rem 1rem; }
  .additional-features { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .page-title { font-size: 1.875rem; }
  .page-subtitle { font-size: 1rem; }
  .features-detailed, .features-grid-section { padding: 2rem 1rem; }
  .feature-content h2 { font-size: 1.375rem; }
  .slider-button { width: 36px; height: 36px; font-size: 1.25rem; }
  .slider-button-prev { left: 0.25rem; }
  .slider-button-next { right: 0.25rem; }
  .additional-feature { padding: 1.5rem; }
}

/* === PRICING === */
.pricing-page { min-height: 100vh; }

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.billing-option {
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-option:hover { background: rgba(255, 255, 255, 0.3); border-color: rgba(255, 255, 255, 0.5); transform: translateY(-2px); }
.billing-option.active { background: #fff; color: #687DE8; border-color: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); }

.billing-badge {
  background: #E4FF1A;
  color: #000;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.yearly-savings {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  background-color: #E4FF1B;
  margin-top: 0;
  margin-bottom: 20px;
  padding: 10px;
  display: inline-block;
}

.pricing-plans { padding: 4rem 2rem; }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan-card {
  background: #FBFFE7;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }

.plan-featured {
  border: 3px solid #FE11EF;
  background: linear-gradient(to bottom, #FE11EF05, transparent);
  transform: scale(1.05);
}

.plan-featured:hover { transform: scale(1.05) translateY(-4px); }

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FE11EF;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.plan-header { text-align: center; margin-bottom: 2rem; }
.plan-name { font-size: 1.5rem; font-weight: bold; color: #111827; margin-bottom: 1rem; }
.plan-price { margin-bottom: 1rem; }

.currency { font-size: 1.25rem; color: #6b7280; vertical-align: top; }
.amount { font-size: 3rem; font-weight: bold; color: #FE11EF; }
.period { font-size: 1rem; color: #6b7280; }

.plan-description { color: #6b7280; line-height: 25px; text-align: left; font-size: 20px; padding: 0 30px; }

.plan-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.plan-features li {
  padding: 0.75rem 0;
  color: #374151;
  position: relative;
  padding-left: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  text-align: left;
  line-height: 20px;
}

.plan-features li svg {
  margin-right: 6px;
  margin-top: 2px;
  float: left;
}

.plan-features li:last-child { border-bottom: none; }

.plan-button {
  width: 100%;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: inherit;
}

.pricing-faq { background-color: #fff; padding: 4rem 2rem; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item { background: #FBFFE7; padding: 2rem; border-radius: 1rem; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.faq-item h3 { font-size: 1.125rem; font-weight: bold; color: #111827; margin-bottom: 1rem; }
.faq-item p { color: #6b7280; line-height: 1.6; }

.pricing-cta { padding: 4rem 2rem; background: #E000D6; color: #fff; text-align: center; }
.pricing-cta .container { text-align: center; }
.pricing-cta h2 { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; }
.pricing-cta p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }
.pricing-cta .btn-primary { background-color: #fff; color: rgb(118, 76, 165); }
.pricing-cta .btn-primary:hover { background-color: #E4FF1A; color: #000; }

@media (max-width: 768px) {
  .pricing-hero { padding: 3rem 1rem; }
  .billing-toggle { gap: 0.75rem; }
  .billing-option { padding: 0.625rem 1.25rem; font-size: 0.9375rem; }
  .pricing-plans { padding: 3rem 1rem; }
  .plans-grid { grid-template-columns: 1fr; gap: 2rem; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .plan-card { padding: 1.75rem; }
  .pricing-faq { padding: 3rem 1rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-cta { padding: 3rem 1rem; }
  .pricing-cta h2 { font-size: 1.875rem; }
}

/* === ABOUT === */
.about-page { min-height: 100vh; text-align: left; }
.about-hero { text-align: left; }
.about-story { padding: 4rem 2rem; }
.story-content { max-width: 800px; margin: 0 auto; text-align: left; }
.story-text { font-size: 1.125rem; color: #374151; line-height: 1.8; margin-bottom: 1.5rem; }

.about-mission { background-color: #fff; padding: 4rem 2rem; }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; }

.mission-item {
  background: #FBFFE7;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mission-item:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.mission-icon { margin-bottom: 1.5rem; display: flex; justify-content: center; align-items: center; }
.mission-item h3 { font-size: 1.5rem; font-weight: bold; color: #111827; margin-bottom: 1rem; }
.mission-item p { color: #6b7280; line-height: 1.6; }

.about-team { 
  padding: 4rem 2rem; 
  background: linear-gradient(135deg, #fe11ef, #764ca5);  
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.team-member { 
    text-align: center; 
    padding: 2rem; 
    border-radius: 1rem; 
    transition: transform 0.2s; 
    background: #fffffff2;
}
.team-member:hover { transform: translateY(-4px); }

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 5px solid #E4FF1B;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin: 0 auto 1.5rem;
}

/* === SUPPORT === */
.support-page { min-height: 100vh; }
.support-options { padding: 4rem 2rem; background: #FBFFE7; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; max-width: 1000px; margin: 0 auto; }

.support-card {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.support-card.priority { border: 3px solid #FE11EF; }

.support-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FE11EF;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.support-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 2rem; }
.support-card h2 { font-size: 2rem; font-weight: bold; color: #111827; margin-bottom: 1rem; }
.support-description { font-size: 1.125rem; color: #6b7280; line-height: 1.6; margin-bottom: 2rem; }

.support-features { list-style: none; padding: 0; margin-bottom: 2rem; text-align: left; }
.support-features li { padding: 0.75rem 0; color: #374151; position: relative; padding-left: 1.5rem; border-bottom: 1px solid #f3f4f6; }
.support-features li:last-child { border-bottom: none; }
.support-features li::before { content: "✓"; position: absolute; left: 0; color: #FE11EF; font-weight: bold; }

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.support-resources { padding: 4rem 2rem; background: #fff; }
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; }

.resource-card {
  background: #FBFFE7;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  display: block;
}

.resource-card:hover { transform: translateY(-4px); border-color: #FE11EF; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); }
.resource-icon { font-size: 3rem; margin-bottom: 1rem; }
.resource-card h3 { font-size: 1.5rem; font-weight: bold; color: #111827; margin-bottom: 0.75rem; }
.resource-card p { color: #6b7280; line-height: 1.6; }

@media (max-width: 768px) {
  .support-hero { padding: 3rem 1rem; }
  .support-options { padding: 3rem 1rem; }
  .support-grid { grid-template-columns: 1fr; gap: 2rem; }
  .support-card { padding: 2rem 1.5rem; }
  .support-resources { padding: 3rem 1rem; }
  .resources-grid { grid-template-columns: 1fr; }
}

/* === BLOG === */
.blog-page { min-height: 100vh; }
.blog-hero { text-align: center; }
.blog-list { padding: 4rem 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }

.blog-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }
.blog-card-image { width: 100%; height: 220px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-content { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.875rem; color: #666; }
.blog-date { color: #FE11EF; font-weight: 600; }
.blog-author { color: #666; }
.blog-title { font-size: 1.5rem; font-weight: bold; color: #111827; margin: 0; line-height: 1.3; }
.blog-excerpt { color: #6b7280; line-height: 1.6; margin: 0; }
.blog-read-more { color: #FE11EF; font-weight: 600; font-size: 0.875rem; }

@media (max-width: 768px) {
  .blog-hero { padding: 3rem 1rem; }
  .blog-list { padding: 3rem 1rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-card-image { height: 200px; }
  .blog-title { font-size: 1.375rem; }
}

/* === BLOG POST === */
.blog-post-page { min-height: 100vh; background-color: #FBFFE7; text-align: left; }
.blog-post-page .container { text-align: left; }

.back-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.back-link:hover { opacity: 1; text-decoration: underline; }

.post-title { font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; line-height: 1.2; }
.post-meta { display: flex; gap: 1.5rem; font-size: 0.875rem; opacity: 0.9; }
.post-date { font-weight: 600; }
.post-author { opacity: 0.8; }

.blog-post-featured-image { padding: 0 2rem; margin-top: 20px; position: relative; z-index: 10; }
.blog-post-featured-image .container { max-width: 900px; margin: 0 auto; }
.blog-post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-post-content { padding: 4rem 2rem; text-align: left; padding-top: 0; margin-top: -10px; }

.markdown-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.markdown-content h1 { font-size: 2rem; font-weight: bold; margin: 2rem 0 1rem; color: #111827; }
.markdown-content h2 { font-size: 1.5rem; font-weight: bold; margin: 1.5rem 0 1rem; color: #111827; }
.markdown-content h3 { font-size: 1.25rem; font-weight: bold; margin: 1.25rem 0 0.75rem; color: #111827; }
.markdown-content p { margin-bottom: 1.25rem; line-height: 1.8; color: #374151; font-size: 1.05rem; }
.markdown-content ul, .markdown-content ol { margin-bottom: 1.25rem; padding-left: 2rem; line-height: 1.8; color: #374151; }
.markdown-content li { margin-bottom: 0.5rem; }
.markdown-content a { color: #FE11EF; text-decoration: underline; }
.markdown-content a:hover { color: #E000D6; }
.markdown-content code { background-color: #f3f4f6; padding: 0.2rem 0.4rem; border-radius: 0.25rem; font-size: 0.9em; font-family: 'Courier New', monospace; }
.markdown-content pre { background-color: #1f2937; color: #e5e7eb; padding: 1rem; border-radius: 0.5rem; overflow-x: auto; margin-bottom: 1.25rem; }
.markdown-content pre code { background-color: transparent; padding: 0; color: inherit; }
.markdown-content blockquote { border-left: 4px solid #FE11EF; padding-left: 1rem; margin: 1.5rem 0; color: #6b7280; font-style: italic; }
.markdown-content hr { border: none; border-top: 2px solid #e5e7eb; margin: 10px 0; }

.blog-post-footer { padding: 2rem; text-align: center; }

@media (max-width: 768px) {
  .blog-post-header { padding: 2.5rem 1rem; }
  .post-title { font-size: 1.875rem; }
  .post-meta { flex-wrap: wrap; gap: 0.75rem; }
  .blog-post-featured-image { margin-top: 1rem; padding: 0 1rem; }
  .blog-post-featured-image img { max-height: 300px; }
  .blog-post-page .container { padding: 0 1rem; }
  .blog-post-content { padding: 0; padding-top: 0; margin-top: -10px; }
  .markdown-content { padding: 2rem 1.5rem; }
  .markdown-content h1 { font-size: 1.625rem; }
  .markdown-content h2 { font-size: 1.375rem; }
  .markdown-content p { font-size: 1rem; }
}

/* === DOCS === */
.docs-page { min-height: 100vh; }
.docs-hero { text-align: center; }
.docs-hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.docs-hero p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.docs-list { padding:0; }
.doc-group { margin-bottom: 0; padding-top:30px; padding-bottom: 50px; }

.group-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: #2d3748;
  font-weight: 600;
  padding-bottom: 0.5rem;
  text-align: left;
  border-bottom: 2px solid #FE11EF;
}

.docs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }

.doc-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.doc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }
.doc-card-image { width: 100%; height: 100px; overflow: hidden; background: linear-gradient(135deg, #667eeaac 0%, #764ba2ab 100%); }
.doc-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; opacity: 0.6; }
.doc-card:hover .doc-card-image img { transform: scale(1.05); }

.doc-card-content { padding: 1.5rem; text-align: left; }
.doc-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: #2d3748; }
.doc-excerpt { color: #4a5568; line-height: 1.6; margin-bottom: 1rem; }
.doc-read-more { color: #FE11EF; font-weight: 500; display: inline-block; }

@media (max-width: 768px) {
  .docs-hero h1 { font-size: 2rem; }
  .docs-hero p { font-size: 1rem; }
  .docs-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .group-title { font-size: 1.5rem; }
}

/* === DOC PAGE === */
.doc-page { min-height: 100vh; background-color: #f7fafc; }
.doc-header { padding: 2rem 0; }

.doc-page-back-link {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: opacity 0.3s ease;
  margin: 0;
}

.doc-page-back-link:hover { opacity: 0.8; color: white; }

.doc-page-title { font-size: 2.5rem; margin-top: 0; font-weight: 700; }
.doc-content { padding: 25px; margin: 20px 10px; display: inline-block; }

.doc-article {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.doc-article h1, .doc-article h2, .doc-article h3, .doc-article h4 { color: #2d3748; margin-top: 2rem; margin-bottom: 1rem; font-weight: 600; }
.doc-article h1 { font-size: 2.25rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; }
.doc-article h2 { font-size: 1.875rem; border-bottom: 1px solid #e2e8f0; padding-bottom: 0.5rem; }
.doc-article h3 { font-size: 1.5rem; }
.doc-article h4 { font-size: 1.25rem; }
.doc-article p { line-height: 1.75; color: #4a5568; margin-bottom: 1.25rem; }
.doc-article ul, .doc-article ol { margin-bottom: 1.25rem; padding-left: 2rem; color: #4a5568; }
.doc-article li { margin-bottom: 0.5rem; line-height: 1.75; }
.doc-article a { color: #667eea; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.doc-article a:hover { border-bottom-color: #667eea; }
.doc-article code { background-color: #f7fafc; padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.9em; color: #e53e3e; border: 1px solid #e2e8f0; }
.doc-article pre { background-color: #2d3748; color: #f7fafc; padding: 1.5rem; border-radius: 8px; overflow-x: auto; margin-bottom: 1.25rem; }
.doc-article pre code { background-color: transparent; padding: 0; border: none; color: inherit; }
.doc-article blockquote { border-left: 4px solid #667eea; padding-left: 1.5rem; margin: 1.5rem 0; color: #4a5568; font-style: italic; }
.doc-article img { max-width: 100%; height: auto; border-radius: 8px; margin: 1.5rem 0; }
.doc-article table { width: 100%; border-collapse: collapse; margin-bottom: 1.25rem; }
.doc-article th, .doc-article td { padding: 0.75rem; text-align: left; border-bottom: 1px solid #e2e8f0; }
.doc-article th { background-color: #f7fafc; font-weight: 600; color: #2d3748; }

@media (max-width: 768px) {
  .doc-page-title { font-size: 1.75rem; }
  .doc-article { padding: 1.5rem; }
  .doc-article h1 { font-size: 1.75rem; }
  .doc-article h2 { font-size: 1.5rem; }
  .doc-article h3 { font-size: 1.25rem; }
}

/* === ASSISTANT LIMIT === */
.assistant-limit-page { min-height: 100vh; background-color: #f7fafc; text-align: left; }
.assistant-limit-hero { text-align: center; }
.assistant-limit-hero h1 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 700; }
.assistant-limit-hero .subtitle { font-size: 1.25rem; opacity: 0.95; max-width: 700px; margin: 0 auto; }
.assistant-limit-content { padding: 3rem 0; text-align: left; }

.content-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.icon-section { text-align: center; margin-bottom: 2rem; }

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.content-card h2 { font-size: 2rem; color: #2d3748; margin-bottom: 1rem; text-align: center; }
.content-card > p { font-size: 1.125rem; color: #4a5568; line-height: 1.8; margin-bottom: 2.5rem; text-align: left; }

.info-grid { display: grid; gap: 2rem; margin-bottom: 3rem; }
.info-item { padding: 1.5rem; border-left: 4px solid #667eea; background-color: #f7fafc; border-radius: 8px; }
.info-item h3 { font-size: 1.25rem; color: #2d3748; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.75rem; }
.info-item h3 svg { color: #667eea; flex-shrink: 0; }
.info-item p { color: #4a5568; line-height: 1.7; }

.upgrade-section { background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%); padding: 2rem; border-radius: 12px; text-align: center; margin-bottom: 3rem; }
.upgrade-section h3 { font-size: 1.5rem; color: #2d3748; margin-bottom: 1rem; }
.upgrade-section p { color: #4a5568; margin-bottom: 1.5rem; line-height: 1.7; }

.upgrade-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upgrade-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4); color: white; }

.tips-section { border-top: 2px solid #e2e8f0; padding-top: 2rem; }
.tips-section h3 { font-size: 1.5rem; color: #2d3748; margin-bottom: 1rem; }
.tips-section ul { list-style: none; padding: 0; margin: 0; }
.tips-section li { padding: 0.75rem 0; color: #4a5568; line-height: 1.7; position: relative; padding-left: 2rem; }
.tips-section li::before { content: "✓"; position: absolute; left: 0; color: #667eea; font-weight: bold; font-size: 1.25rem; }

@media (max-width: 768px) {
  .assistant-limit-hero h1 { font-size: 2rem; }
  .assistant-limit-hero .subtitle { font-size: 1rem; }
  .content-card { padding: 2rem 1.5rem; }
  .content-card h2 { font-size: 1.5rem; }
}

/* === LEGAL PAGES (Privacy, Terms, Cookie, GDPR) === */
.privacy-policy-page,
.terms-of-service-page,
.cookie-policy-page,
.gdpr-page {
  min-height: 100vh;
  padding: 4rem 0;
  background: #FBFFE6;
}

.privacy-policy-page .container,
.terms-of-service-page .container,
.cookie-policy-page .container,
.gdpr-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

.legal-content {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin: 30px 0px;
}

.legal-content h1 { font-size: 2.5rem; color: #1a202c; margin-bottom: 0.5rem; font-weight: 700; }
.last-updated { color: #718096; font-size: 0.95rem; margin-bottom: 2rem; font-style: italic; }
.legal-content section { margin-bottom: 2.5rem; }

.legal-content h2 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.legal-content h3 { font-size: 1.25rem; color: #4a5568; margin-bottom: 0.75rem; margin-top: 1.5rem; font-weight: 600; }
.legal-content p { line-height: 1.8; color: #4a5568; margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { line-height: 1.8; color: #4a5568; margin-bottom: 0.5rem; }
.legal-content a { color: #667eea; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.legal-content a:hover { border-bottom-color: #667eea; }
.legal-content strong { color: #2d3748; font-weight: 600; }

@media (max-width: 768px) {
  .privacy-policy-page, .terms-of-service-page, .cookie-policy-page, .gdpr-page { padding: 2rem 0; }
  .legal-content { padding: 2rem 1.5rem; border-radius: 8px; }
  .legal-content h1 { font-size: 2rem; }
  .legal-content h2 { font-size: 1.5rem; }
  .legal-content h3 { font-size: 1.1rem; }
}

/* === Not Found === */
.loading, .not-found { text-align: center; padding: 4rem 2rem; }
.not-found h1 { font-size: 2rem; margin-bottom: 1rem; color: #111827; }


.author-link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .5rem 1rem;
    background: #111827;
    color: #fff;
    border: 2px solid #111827;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: .8125rem;
    transition: all .2s ease;
}

@media (max-width: 768px) {
    .author-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .author-links {
        justify-content: center;
    }

    .author-photo {
        width: 100px;
        height: 100px;
    }
}

.author-links {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    text-align: center;
}

.author-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    background: #fffffff2;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px #0003;
}

.author-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 15px #0003;
    border: 3px solid #E4FF1A;
}

.author-role {
    font-size: .9375rem;
    color: #fe11ef;
    font-weight: 600;
    margin-bottom: 1rem;
}

.author-bio {
    font-size: .9375rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}