/* Flora API Custom Styles - Extracted from Tailwind */

/* ===== CSS Reset & Base Styles ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body ::selection {
  background-color: #10b981;
  color: white;
}

/* ===== Custom Properties ===== */
:root {
  --flora-dark: #064e3b;
  --flora-green: #10b981;
  --flora-light: #d1fae5;
  --earth-50: #f9fafb;
  --earth-100: #f3f4f6;
}

/* ===== Layout Utilities ===== */
.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-xs {
  max-width: 20rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== Animations ===== */
@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-sway {
  animation: sway 4s ease-in-out infinite;
}

.animate-float {
  animation: float 7s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 7s ease-in-out 3.5s infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== Custom Scrollbar ===== */
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}

/* ===== Leaf Shapes ===== */
.leaf-shape {
  border-radius: 2px 24px 2px 24px;
}

.leaf-shape-reverse {
  border-radius: 24px 2px 24px 2px;
}

/* ===== Line Clamp ===== */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.group:hover .line-clamp-2 {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* ===== Navbar ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

#navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--flora-dark);
  color: white;
  border-radius: 1rem 0 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.logo-link:hover .logo-icon {
  border-radius: 0 1rem 0 1rem;
}

.logo-text {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--flora-dark);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--flora-green);
}

.nav-link.login {
  color: var(--flora-dark);
}

.btn-primary {
  background-color: var(--flora-dark);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #065f46;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-primary a {
  color: white;
  text-decoration: none;
}

.mobile-menu-btn {
  display: block;
  color: #4b5563;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn:hover {
  color: var(--flora-dark);
}

#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #f3f4f6;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu .nav-link {
  font-size: 1rem;
}

#mobile-menu hr {
  border: 0;
  border-top: 1px solid #f3f4f6;
  margin: 0;
}

#mobile-menu .btn-primary {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-bg-1 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  width: 24rem;
  height: 24rem;
  background-color: rgba(167, 243, 208, 0.5);
  border-radius: 9999px;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: float 7s ease-in-out infinite;
}

.hero-bg-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-25%, 25%);
  width: 31.25rem;
  height: 31.25rem;
  background-color: rgba(254, 243, 199, 0.6);
  border-radius: 9999px;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: float 7s ease-in-out 3.5s infinite;
}

.hero-svg-1 {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 6rem;
  height: 6rem;
  color: rgba(167, 243, 208, 0.5);
  z-index: 0;
  pointer-events: none;
  animation: sway 4s ease-in-out infinite;
}

.hero-svg-2 {
  position: absolute;
  bottom: 10rem;
  right: 5rem;
  width: 8rem;
  height: 8rem;
  color: rgba(167, 243, 208, 0.4);
  z-index: 0;
  pointer-events: none;
  animation: sway 4s ease-in-out 1s infinite;
}

.hero-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background-color: var(--flora-green);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-title {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: #111827;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .italic {
  font-style: italic;
  color: var(--flora-dark);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-cta a {
  width: 100%;
  text-decoration: none;
}

.btn-primary-lg {
  background-color: var(--flora-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary-lg:hover {
  background-color: #065f46;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.btn-secondary-lg {
  background-color: white;
  color: #374151;
  border: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary-lg:hover {
  background-color: #f9fafb;
}

.hero-note {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-visual {
  flex: 1;
  width: 100%;
  max-width: 28rem;
  position: relative;
}

.hero-card-wrapper {
  position: relative;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-card-main {
  position: absolute;
  inset: 1rem;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 20;
  transform: rotate(2deg);
  transition: transform 0.5s;
}

.hero-card-main:hover {
  transform: rotate(0deg);
}

.hero-card-img {
  width: 100%;
  height: 66.666%;
  object-fit: cover;
}

.hero-card-content {
  padding: 1.5rem;
  background-color: white;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.hero-card-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #111827;
  margin: 0;
}

.hero-card-subtitle {
  color: #059669;
  font-weight: 500;
  margin: 0;
}

.badge-native {
  background-color: #d1fae5;
  color: #065f46;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 0.5rem;
  background-color: #f3f4f6;
  border-radius: 9999px;
  margin-top: 1rem;
  overflow: hidden;
}

.progress-bar {
  width: 75%;
  height: 100%;
  background-color: var(--flora-green);
  border-radius: 9999px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.hero-card-back {
  position: absolute;
  inset: 1rem;
  background-color: var(--flora-dark);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transform: rotate(-3deg) translateY(1rem);
  opacity: 0.9;
}

.floating-badge {
  position: absolute;
  background-color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.floating-badge-1 {
  top: 3rem;
  left: -2rem;
  animation: float 5s ease-in-out infinite;
}

.floating-badge-2 {
  bottom: 6rem;
  right: -1rem;
  animation: float 6s ease-in-out 3.5s infinite;
}

.floating-badge-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-badge-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-badge-icon.amber {
  background-color: #fef3c7;
  color: #b45309;
}

.floating-badge-icon.blue {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.floating-badge-label {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}

.floating-badge-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* ===== Stats Section ===== */
.stats-section {
  background-color: var(--flora-dark);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  color: rgba(167, 243, 208, 0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ===== Features Section ===== */
.features-section {
  padding: 6rem 0;
  background-color: var(--earth-50);
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.section-tag {
  color: var(--flora-green);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.section-title {
  margin-top: 0.5rem;
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111827;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon.emerald {
  background-color: #d1fae5;
  color: #047857;
}

.feature-icon.blue {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.feature-icon.red {
  background-color: #fee2e2;
  color: #b91c1c;
}

.feature-icon.amber {
  background-color: #fef3c7;
  color: #b45309;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #4b5563;
  line-height: 1.75;
  font-size: 0.875rem;
}

.data-sources {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e7eb;
}

.data-sources-text {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.data-sources-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.5s;
}

.data-sources-logos:hover {
  filter: grayscale(0%);
}

.data-sources-logo {
  font-size: 1.125rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

/* ===== Demo Section ===== */
.demo-section {
  padding: 5rem 0;
  background-color: var(--flora-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.demo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 30px 30px;
}

.demo-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.demo-header {
  margin-bottom: 3rem;
  text-align: center;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background-color: rgba(6, 78, 59, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.demo-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.demo-subtitle {
  color: rgba(167, 243, 208, 0.8);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.demo-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.demo-form {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.demo-form-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.demo-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 0.375rem;
  font-weight: 600;
}

.form-input,
.form-select {
  width: 100%;
  background-color: #1e1e1e;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--flora-green);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%239ca3af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-button-wrapper {
  padding-top: 1rem;
}

.demo-send-btn {
  width: 100%;
  background-color: var(--flora-green);
  color: var(--flora-dark);
  font-weight: 700;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.demo-send-btn:hover {
  background-color: #6ee7b7;
}

.demo-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.url-preview {
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #9ca3af;
  word-break: break-all;
}

.url-method {
  color: #c084fc;
  font-weight: 700;
}

.url-endpoint {
  color: #6ee7b7;
}

.url-param {
  color: white;
}

.demo-response {
  background-color: #1e1e1e;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.response-dots {
  display: flex;
  gap: 0.5rem;
}

.response-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
}

.response-dot.red {
  background-color: #ef4444;
}

.response-dot.yellow {
  background-color: #eab308;
}

.response-dot.green {
  background-color: #22c55e;
}

.response-title {
  font-size: 0.75rem;
  font-family: 'Courier New', monospace;
  color: #9ca3af;
}

.response-body {
  padding: 1.5rem;
  overflow: auto;
  flex: 1;
  position: relative;
}

.loading-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 30, 30, 0.8);
  z-index: 10;
}

.loading-overlay.hidden {
  display: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.loading-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

.response-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #6ee7b7;
}

.response-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  justify-content: space-between;
}

/* ===== Use Cases Section ===== */
.use-cases-section {
  padding: 6rem 0;
  background-color: white;
}

.use-cases-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.use-cases-header-content {
  max-width: 42rem;
}

.use-cases-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.use-cases-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.use-case-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f3f4f6;
  height: 20rem;
  cursor: pointer;
}

.use-case-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.use-case-card:hover .use-case-img {
  transform: scale(1.1);
}

.use-case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
  opacity: 0.9;
}

.use-case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1.5rem;
  width: 100%;
}

.use-case-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.use-case-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.use-case-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.use-case-description {
  color: #e5e7eb;
  font-size: 0.875rem;
}

/* ===== Footer ===== */
.footer {
  background-color: white;
  border-top: 1px solid #e5e7eb;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-logo {
  max-width: 100%;
  height: auto;
}

.footer-brand-text {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111827;
}

.footer-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-size: 0.875rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--flora-dark);
}

.footer-bottom {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ===== Responsive Design ===== */
@media (min-width: 640px) {
  .navbar-container,
  .hero-container,
  .stats-container,
  .section-container,
  .demo-container,
  .footer-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-cta a {
    width: auto;
  }
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .hero-section {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }

  .hero-content {
    flex-direction: row;
    gap: 5rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-note {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-value {
    font-size: 2.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .demo-left {
    grid-column: span 5;
  }

  .demo-response {
    grid-column: span 7;
  }

  .demo-title {
    font-size: 2.25rem;
  }

  .use-cases-header {
    flex-direction: row;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-cases-title {
    font-size: 2.25rem;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .navbar-container,
  .hero-container,
  .stats-container,
  .section-container,
  .demo-container,
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-visual {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .data-sources-logos {
    gap: 4rem;
  }

  .use-cases-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ===== Pricing Page Styles ===== */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--earth-50);
  position: relative;
}

/* Billing Information Notice */
.billing-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background-color: rgba(52, 211, 153, 0.1);
  border-left: 4px solid #34d399;
  border-radius: 0.5rem;
}

.billing-notice p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.billing-notice p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.pricing-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.pricing-bg-svg {
  position: absolute;
  top: 5rem;
  right: 0;
  color: #f3f4f6;
  width: 16rem;
  height: 16rem;
  transform: translateX(50%);
}

.pricing-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.pricing-title {
  font-size: 1.875rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 6rem;
}

/* Pricing Card Base */
.pricing-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  background-color: white;
  color: #111827;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.pricing-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Developer Card (Highlighted) */
.pricing-card.highlighted {
  background-color: var(--flora-dark);
  color: white;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
  z-index: 10;
  border: 4px solid rgba(16, 185, 129, 0.2);
}

.pricing-card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--flora-green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 0 1rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-card.highlighted .pricing-card-title {
  color: white;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
}

.pricing-card-amount {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.pricing-card-period {
  margin-left: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-card.highlighted .pricing-card-period {
  color: #a7f3d0;
}

.pricing-card-description {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-card.highlighted .pricing-card-description {
  color: #d1fae5;
}

.pricing-card-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  cursor: default;
  position: relative;
}

.pricing-feature-icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #059669;
}

.pricing-feature-text-wrapper {
  flex: 1;
  position: relative;
}

.pricing-feature-text {
  color: #4b5563;
  border-bottom: 1px dotted rgba(156, 163, 175, 0.3);
}

.highlighted {
  .pricing-feature-text {
    color: #ecfdf5;
  }
  .pricing-feature-icon {
    color: #6ee7b7;
  }
  .trial-feature{
    .pricing-feature-text {
      color: #c2c3ff;
    }
    .pricing-feature-icon {
      color: #c2c3ff;
      font-weight: 600;
    }
  }
}

.trial-feature {
  .pricing-feature-icon {
    color: #6366f1;
  }
  .pricing-feature-text {
    color: #6366f1;
    font-weight: 600;
  }
}

.pricing-feature-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0.5rem;
  width: 12rem;
  padding: 0.5rem;
  background-color: #111827;
  color: white;
  font-size: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 20;
  text-align: center;
  pointer-events: none;
}

.pricing-feature:hover .pricing-feature-tooltip {
  opacity: 1;
  visibility: visible;
}

.pricing-feature-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #111827;
}

.pricing-feature-info-icon {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.5;
  color: #9ca3af;
  transition: opacity 0.2s;
}

.pricing-feature:hover .pricing-feature-info-icon {
  opacity: 1;
}

.pricing-card.highlighted .pricing-feature-info-icon {
  color: #6ee7b7;
}

.pricing-card-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}

.pricing-card-button.primary {
  background-color: #f3f4f6;
  color: #111827;
}

.pricing-card-button.primary:hover {
  background-color: #e5e7eb;
}

.pricing-card-button.highlighted {
  background-color: var(--flora-green);
  color: white;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card-button.highlighted:hover {
  background-color: #6ee7b7;
  box-shadow: 0 10px 15px rgba(16, 185, 129, 0.3);
}

.pricing-card-button a {
  color: inherit;
  text-decoration: none;
}

/* Comparison Table */
.section-card-wrapper {
  margin-top: 5rem;
  padding-bottom: 0.5rem;
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #f3f4f6;
}

.section-card-header {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  background-color: white;
}

.section-card-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.section-card-scroll {
  overflow-x: auto;
}

.section-card {
  width: 100%;
  min-width: 800px;
  text-align: left;
  border-collapse: collapse;
}

.section-card thead th {
  padding: 1.25rem;
  border-bottom: 2px solid #f3f4f6;
  font-weight: 700;
  color: #111827;
}

.section-card thead th:first-child {
  width: 33.333%;
  background-color: rgba(249, 250, 251, 0.5);
}

.section-card thead th:nth-child(2),
.section-card thead th:nth-child(4),
.section-card thead th:nth-child(5) {
  width: 16.666%;
  text-align: center;
  background-color: white;
}

.section-card thead th:nth-child(3) {
  width: 16.666%;
  text-align: center;
  background-color: rgba(236, 253, 245, 0.3);
  border-bottom-color: var(--flora-green);
  border-top: 4px solid var(--flora-green);
  color: var(--flora-dark);
}

.section-card tbody {
  font-size: 0.875rem;
}

.section-card tbody tr.section-header {
  background-color: rgba(236, 253, 245, 0.8);
}

.section-card tbody tr.section-header td {
  padding: 0.75rem 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #065f46;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.section-card tbody tr.data-row {
  background-color: white;
  border-bottom: 1px solid #f9fafb;
  transition: background-color 0.2s;
}

.section-card tbody tr.data-row:hover {
  background-color: #f9fafb;
}

.section-card tbody tr.data-row:nth-child(even) {
  background-color: #f9fafb;
}

.section-card tbody tr.data-row:nth-child(even):hover {
  background-color: #f3f4f6;
}

.section-card tbody td {
  padding: 1rem 1.25rem;
}

.section-card tbody td:first-child {
  color: #374151;
  font-weight: 500;
}

.section-card tbody td:not(:first-child) {
  text-align: center;
}

.section-card tbody td:nth-child(3) {
  background-color: rgba(236, 253, 245, 0.1);
}

.section-card tbody tr.data-row:nth-child(even) td:nth-child(3) {
  background-color: rgba(236, 253, 245, 0.15);
}

.section-card .table-check-icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--flora-green);
  margin: 0 auto;
}

.section-card .table-dash {
  color: #d1d5db;
  font-weight: 500;
  font-size: 1.125rem;
}

.section-card .table-highlight {
  color: var(--flora-green);
  font-weight: 600;
}

.section-card tbody tr:last-child {
  border-bottom: none;
}

.section-card tbody tr:last-child:hover {
  background-color: #f9fafb;
}

.main-content {
  padding-top: 5rem;
}

/* Navbar always scrolled on pricing page */
.pricing-page #navbar {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Responsive Pricing */
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Dashboard Page Styles ===== */
.dashboard-page {
  background-color: var(--earth-50);
  min-height: 100vh;
}

/* Login Dialog */
.dialog-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.dialog-box {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 400px;
  text-align: center;
}

.dialog-box h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #111827;
}

.dialog-box p {
  margin: 0 0 1.5rem 0;
  color: #6b7280;
}

.dialog-btn {
  background-color: var(--flora-dark);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.dialog-btn:hover {
  background-color: #065f46;
}

/* Dashboard Header */
.header {
  background-color: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.logout-btn {
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.logout-btn:hover {
  background-color: #e5e7eb;
}

/* Dashboard Container */
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Dashboard Cards */
.card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.card h2 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: #111827;
}

.card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

.card p {
  color: #6b7280;
  line-height: 1.75;
}

/* Tier Badges */
.tier-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tier-badge.tier-free {
  background-color: #f3f4f6;
  color: #374151;
}

.tier-badge.tier-developer {
  background-color: #d1fae5;
  color: #065f46;
}

.tier-badge.tier-professional {
  background-color: #dbeafe;
  color: #1e40af;
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid #f3f4f6;
  border-top-color: var(--flora-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

/* API Key Display */
.api-key-box {
  background-color: #1e1e1e;
  color: #6ee7b7;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  word-break: break-all;
  margin: 1rem 0;
  border: 1px solid #374151;
}

/* Usage Bar */
.usage-bar {
  width: 100%;
  height: 1.5rem;
  background-color: #e8eaed;
  border-radius: 9999px;
  overflow: hidden;
  margin-top: 0.5rem;
  position: relative;
}

.usage-bar.loading {
  background: linear-gradient(
    90deg,
    #e8eaed 0%,
    #d1d5db 50%,
    #e8eaed 100%
  );
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.usage-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--flora-green), #6ee7b7);
  border-radius: 9999px;
  transition: width 0.5s ease;
}

/* Buttons */
.manage-btn {
  background-color: var(--flora-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
}

.manage-btn:hover {
  background-color: #065f46;
}

/* Pricing Cards in Dashboard */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-cards .pricing-card {
  border: 2px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #f9fafb;
  transition: all 0.3s;
}

.pricing-cards .pricing-card:hover {
  border-color: var(--flora-green);
  background-color: white;
}

.pricing-cards .pricing-card.current {
  border-color: var(--flora-green);
  background-color: #ecfdf5;
}

.pricing-cards .pricing-card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: #111827;
}

.pricing-cards .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pricing-cards .pricing-card li {
  padding: 0.5rem 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-cards .pricing-card li::before {
  content: '✓';
  color: var(--flora-green);
  font-weight: 700;
}

.upgrade-btn {
  width: 100%;
  background-color: var(--flora-dark);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.upgrade-btn:hover {
  background-color: #065f46;
}

.upgrade-btn:disabled,
.upgrade-btn.current-plan {
  background-color: #d1d5db;
  color: #6b7280;
  cursor: not-allowed;
}

.upgrade-btn:disabled:hover,
.upgrade-btn.current-plan:hover {
  background-color: #d1d5db;
}

/* Manage Section */
#manageSection {
  display: none;
}

#manageSection.show {
  display: block;
}

/* Responsive Dashboard */
@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Auth Pages (Login & Register) ===== */
.auth-page {
  background: linear-gradient(135deg, var(--flora-dark) 0%, #065f46 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.auth-page .container {
  background-color: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 450px;
  width: 100%;
}

.auth-page h1 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #111827;
  text-align: center;
}

.auth-page .subtitle {
  margin: 0 0 2rem 0;
  color: #6b7280;
  text-align: center;
  font-size: 0.875rem;
}

.auth-page form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-page .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-page .form-group label {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.auth-page input[type="email"],
.auth-page input[type="text"] {
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.auth-page input[type="email"]:focus,
.auth-page input[type="text"]:focus {
  outline: none;
  border-color: var(--flora-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.auth-page button[type="submit"] {
  background-color: var(--flora-dark);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 0.5rem;
}

.auth-page button[type="submit"]:hover {
  background-color: #065f46;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

.auth-page button[type="submit"]:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

.auth-page .success {
  background-color: #d1fae5;
  color: #065f46;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.auth-page .error {
  background-color: #fee2e2;
  color: #991b1b;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
  display: none;
}

.auth-page .divider {
  text-align: center;
  color: #9ca3af;
  margin: 1.5rem 0;
  position: relative;
}

.auth-page .divider::before,
.auth-page .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background-color: #e5e7eb;
}

.auth-page .divider::before {
  left: 0;
}

.auth-page .divider::after {
  right: 0;
}

.auth-page .register-link {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

.auth-page .register-link a {
  color: var(--flora-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-page .register-link a:hover {
  color: var(--flora-green);
}

/* Register Page Success Box */
.auth-page .success-box {
  display: none;
  background-color: #ecfdf5;
  border: 2px solid var(--flora-green);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 1rem;
}

.auth-page .success-box h3 {
  margin: 0 0 1rem 0;
  color: #065f46;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
}

.auth-page .success-box p {
  margin: 0 0 0.5rem 0;
  color: #374151;
  font-weight: 500;
}

.auth-page .success-box .api-key-box {
  background-color: #1e1e1e;
  color: #6ee7b7;
  padding: 1rem;
  border-radius: 0.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  word-break: break-all;
  margin: 0.5rem 0 1rem 0;
  border: 1px solid #374151;
}

.auth-page .warning {
  background-color: #fef3c7;
  color: #92400e;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border-left: 4px solid #f59e0b;
}

.auth-page .copy-button {
  width: 100%;
  background-color: var(--flora-green);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-page .copy-button:hover {
  background-color: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.auth-page .success-box button {
  width: 100%;
  background-color: var(--flora-dark);
  color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-page .success-box button:hover {
  background-color: #065f46;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

.auth-page .success-box ul {
  margin: 0;
  padding-left: 1.5rem;
  color: #374151;
}

.auth-page .success-box ul li {
  margin: 0.5rem 0;
}

.auth-page .success-box > div:last-child {
  background-color: #dbeafe;
  border-radius: 0.5rem;
  padding: 1rem;
}

.auth-page .success-box > div:last-child strong {
  color: #1e40af;
}

/* Responsive Auth Pages */
@media (max-width: 640px) {
  .auth-page .container {
    padding: 2rem;
  }

  .auth-page h1 {
    font-size: 1.5rem;
  }
}

/* Services FAQ Section */
.faq-list {
  display: flex;
  flex-direction: column;
  /* gap: 0.5rem; */
}

.faq-item {
  transition: background-color 0.2s;
}

.faq-item[open] {
  background-color: rgba(236, 253, 245, 0.8);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.5rem 1rem 2.5rem;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-icon {
  transition: transform 0.3s;
  color: var(--color-primary);
}

.faq-item[open] .faq-accordion-icon {
  transform: rotate(180deg);
}

.faq-answer {
  /* background-color: rgba(236, 253, 245, 0.8); */
  /* background-color: #f9fafb; */
  padding: 0 2.5rem 1rem 2.5rem;
  line-height: 1.625;
  border-top: 1px solid rgba(var(--color-white-rgb), 0.05);
  li {
    margin-left: 1.25rem;
  }
}

.faq-label {
  padding: 3rem 1.5rem 0.5rem 1.5rem;
  h3 {
    margin: 0;
    color: #065f46;
  }
}