/* Custom Design System for VibeCall */

:root {
  /* Colors */
  --bg-color: #0b0f19;
  --panel-bg: rgba(17, 24, 39, 0.65);
  --panel-border: rgba(255, 255, 255, 0.08);
  --panel-border-glow: rgba(99, 102, 241, 0.15);
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  --color-primary: #6366f1; /* Indigo */
  --color-primary-hover: #4f46e5;
  --color-secondary: #3b82f6; /* Blue */
  --color-accent: #a855f7; /* Purple */
  --color-danger: #ef4444;
  --color-danger-hover: #dc2626;
  --color-success: #10b981;

  --color-male: #3b82f6;
  --color-male-glow: rgba(59, 130, 246, 0.25);
  --color-female: #ec4899;
  --color-female-glow: rgba(236, 72, 153, 0.25);
  --color-any: #8b5cf6;

  /* Font Families */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Borders & Shadows */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.5);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Changed from center to support scrolling naturally */
  overflow-x: hidden;
  position: relative;
}

/* Moving Mesh Background Gradients */
.bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

.bg-gradient-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: float 20s infinite alternate ease-in-out;
}

.bg-gradient-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: float 25s infinite alternate-reverse ease-in-out;
}

.bg-gradient-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-female) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-center 18s infinite alternate ease-in-out;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(40px) scale(1.1); }
}

@keyframes float-center {
  0% { transform: translate(-50%, -50%) translate(-30px, -30px); }
  100% { transform: translate(-50%, -50%) translate(30px, 30px); }
}

/* Container */
.app-container {
  width: 100%;
  max-width: 760px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Changed from height: 100vh to support content scaling */
  justify-content: flex-start; /* Changed to flow downward naturally */
  gap: 20px; /* Spacing between main calling card and SEO sections */
}

/* Header */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 20px 0;
}

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

.logo-icon {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.logo h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 30%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Status Indicator */
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.online-separator {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

.online-icon {
  width: 14px;
  height: 14px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-success);
  animation: pulse 1.5s infinite;
}

/* Main Card */
.main-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 20px;
  min-height: 480px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.glass {
  background: var(--panel-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--panel-border);
}

.glass-inner {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

/* App States Control */
.app-state {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.app-state.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: translateY(0);
}

/* State 1: Setup styling */
.state-header {
  text-align: center;
  margin-bottom: 35px;
}

.state-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.state-header p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.setup-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.group-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.gender-selector, .pref-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

/* Custom Select Buttons */
.select-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.select-btn i {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.select-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Active buttons styling */
.gender-btn[data-gender="male"].active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-male);
  color: #93c5fd;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.gender-btn[data-gender="female"].active {
  background: rgba(236, 72, 153, 0.15);
  border-color: var(--color-female);
  color: #fbcfe8;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

.pref-btn[data-pref="male"].active {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--color-male);
  color: #93c5fd;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.pref-btn[data-pref="female"].active {
  background: rgba(236, 72, 153, 0.15);
  border-color: var(--color-female);
  color: #fbcfe8;
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.2);
}

.pref-btn[data-pref="any"].active {
  background: rgba(139, 92, 246, 0.15);
  border-color: var(--color-any);
  color: #ddd6fe;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Mic Alert Status */
.mic-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.mic-alert i {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.mic-alert.info {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.2);
  color: #c7d2fe;
}

.mic-alert.warning {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  animation: pulse-border 2s infinite;
}

.mic-alert.error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

@keyframes pulse-border {
  0% { border-color: rgba(245, 158, 11, 0.2); }
  50% { border-color: rgba(245, 158, 11, 0.5); }
  100% { border-color: rgba(245, 158, 11, 0.2); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: var(--radius-sm);
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
  opacity: 0.95;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-large {
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

.btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-control:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.05);
}

.btn-control.muted {
  background: rgba(239, 68, 68, 0.2);
  border-color: var(--color-danger);
  color: var(--color-danger);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
  animation: pulse-glow 2s infinite;
}

.btn-danger {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.btn-danger:hover {
  background: var(--color-danger);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.btn-next {
  flex-grow: 1;
  max-width: 260px;
  padding: 15px;
  font-size: 16px;
  border-radius: 50px;
}

/* State 2: Searching styling */
.searching-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.radar-box {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-center {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 25px rgba(99, 102, 241, 0.5);
}

.search-icon {
  color: white;
  width: 24px;
  height: 24px;
}

.ripple {
  position: absolute;
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  z-index: 1;
  transform: scale(1);
  animation: ripple 3s infinite linear;
}

.r-1 { animation-delay: 0s; }
.r-2 { animation-delay: 1s; }
.r-3 { animation-delay: 2s; }

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

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

.searching-status h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.searching-status p {
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* State 3: Call Container */
.call-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.call-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.call-timer {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.call-subtitle {
  color: var(--color-success);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-success);
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* Speakers Grid */
.speakers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 580px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  
  .app-container {
    height: auto;
    min-height: 100vh;
  }

  .main-card {
    padding: 24px;
  }
}

.speaker-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Highlight matching visualizer card based on gender */
.speaker-card.local-speaker {
  border-color: rgba(99, 102, 241, 0.2);
}

.avatar-container {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.avatar-container.male {
  background: var(--color-male-glow);
  border: 2px solid var(--color-male);
  color: #93c5fd;
}

.avatar-container.female {
  background: var(--color-female-glow);
  border: 2px solid var(--color-female);
  color: #fbcfe8;
}

.avatar-icon {
  width: 32px;
  height: 32px;
}

.speaker-info h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.speaker-info .tag {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Audio Visualizer container */
.equalizer-container {
  width: 100%;
  height: 60px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equalizer-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Call Control Buttons Panel */
.call-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

/* Footer Styling */
.app-footer {
  text-align: center;
  padding: 20px 0 10px 0;
  color: var(--text-muted);
  font-size: 12px;
}

/* Pulse Keyframes */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Real-Time Chat Layout */
.call-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.call-audio-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.call-chat-section {
  display: flex;
  flex-direction: column;
  height: 290px;
  border-radius: var(--radius-md);
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.chat-header-icon {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.chat-messages {
  flex-grow: 1;
  overflow-y: auto;
  padding-right: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

/* Chat Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Chat Input Area */
.chat-input-area {
  display: flex;
  gap: 8px;
}

.chat-input-area input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition-smooth);
}

.chat-input-area input:focus {
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.07);
}

.chat-input-area button {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.chat-input-area button i {
  width: 16px;
  height: 16px;
}

/* Message Bubbles */
.chat-bubble {
  max-width: 85%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  word-break: break-word;
}

.chat-bubble.outgoing {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.chat-bubble.incoming {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Call Layout */
@media (max-width: 768px) {
  .call-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .call-chat-section {
    height: 240px;
  }
}

/* SEO Content Section */
.seo-section {
  padding: 40px;
  margin-top: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.seo-section:hover {
  border-color: var(--panel-border-glow);
  box-shadow: var(--shadow-card), 0 0 30px rgba(99, 102, 241, 0.08);
}

.seo-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 20px;
}

.seo-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.seo-subtitle {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-size: 14px;
}

.seo-body strong {
  color: #fff;
}

.seo-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-body h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Features Grid for SEO */
.features-grid-seo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.feature-card-seo {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-smooth);
}

.feature-card-seo:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-2px);
}

.feature-icon-seo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  margin-bottom: 12px;
}

.feature-icon-seo i {
  width: 20px;
  height: 20px;
}

.feature-card-seo h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.feature-card-seo p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Guide Steps */
.guide-steps {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.guide-steps li {
  position: relative;
  padding-left: 35px;
  font-size: 14px;
}

.guide-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid var(--color-any);
  color: #ddd6fe;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-steps li:nth-child(1)::before { content: "1"; }
.guide-steps li:nth-child(2)::before { content: "2"; }
.guide-steps li:nth-child(3)::before { content: "3"; }
.guide-steps li:nth-child(4)::before { content: "4"; }

/* FAQ Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-question::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  font-size: 12px;
  font-weight: 700;
}

.faq-answer {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 30px;
  line-height: 1.5;
}

@media (max-width: 580px) {
  .seo-section {
    padding: 24px;
  }
  
  .seo-header h2 {
    font-size: 22px;
  }
}

