/* Ezoma Custom Styles - Cursor-inspired Design System */

/* CSS Variables for Brand Customization */
:root {
  /* Ezoma Brand Colors */
  --primary-50: #eff6ff;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-900: #1e3a8a;

  /* Neutral Grays (Cursor-inspired) */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Accent Colors */
  --success-500: #10b981;
  --warning-500: #f59e0b;
  --purple-500: #8b5cf6;

  /* Typography Scale */
  --text-5xl: 3.5rem;
  --text-4xl: 2.5rem;
  --text-3xl: 2rem;
  --text-2xl: 1.5rem;
  --text-xl: 1.25rem;
  --text-lg: 1.125rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --section-padding: 5rem 0;
  --hero-padding: 7.5rem 0;
  --container-max-width: 1200px;
}

/* Override PicoCSS with Ezoma branding */
html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--gray-50);
  color: var(--gray-900);
}

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

.section {
  padding: var(--section-padding);
}

.section-hero {
  padding: var(--hero-padding);
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}

/* Typography */
h1 { font-size: var(--text-5xl); font-weight: var(--font-bold); }
h2 { font-size: var(--text-4xl); font-weight: var(--font-semibold); }
h3 { font-size: var(--text-3xl); font-weight: var(--font-semibold); }
h4 { font-size: var(--text-2xl); font-weight: var(--font-medium); }

.hero-title {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navigation */
.nav-minimal {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  width: 125px;
  height: auto;
}

.nav-brand strong {
  font-size: var(--text-xl);
  color: var(--primary-500);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.nav-menu a {
  color: var(--gray-600);
  text-decoration: none;
  font-weight: var(--font-medium);
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.nav-active {
  color: var(--primary-500);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-medium);
  font-size: var(--text-base);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--gray-900);
  border-color: var(--gray-300);
}

.btn-secondary:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
}

/* Cards */
.card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

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

.feature-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary-500);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000 !important;
  font-size: 2.5rem;
}

/* Hero Graphics Section */
.hero-graphics {
  background: white;
  padding: 5rem 0;
}

.hero-graphics h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.hero-graphics .hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-500);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.graphic-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.graphic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-500);
}

.graphic-card h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.graphic-container {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.graphic-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.graphic-card p {
  color: var(--gray-600);
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* CTA After Graphics */
.cta-after-graphics {
  background: linear-gradient(135deg, var(--primary-500), var(--purple-500));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.cta-after-graphics h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
}

.cta-after-graphics > p {
  font-size: var(--text-xl);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

.proof-point strong {
  display: block;
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
}

.proof-point span {
  font-size: var(--text-base);
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--primary-500);
  border-color: white;
}

.cta-buttons .btn-primary:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.made-in-california {
  margin-top: 2rem;
  font-size: var(--text-sm);
  opacity: 0.8;
  font-style: italic;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--primary-500);
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.pricing-header h3 {
  font-size: var(--text-2xl);
  margin-bottom: 0.5rem;
}

.price {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--primary-500);
  margin-bottom: 2rem;
}

.price span {
  font-size: var(--text-lg);
  color: var(--gray-600);
  font-weight: var(--font-normal);
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.features-list li {
  padding: 0.5rem 0;
  color: var(--gray-700);
}

/* Footer */
.footer-minimal {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 2rem 0;
  text-align: center;
}

/* Homepage Specific Styles */
.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}

.hero-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-actions .btn {
  flex: 1;
  max-width: 350px;
  min-width: 250px;
  justify-content: center;
  text-align: center;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-500);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Graphics */
.hero-graphics {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.graphic-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.graphic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-500);
}

.graphic-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.graphic-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.graphic-subtitle {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* Chat Interfaces */
.chat-interface, .mobile-interface, .claude-interface {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.chat-input, .mobile-input {
  background: white;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.chat-response {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ai-avatar {
  font-size: 1.5rem;
}

.response-content {
  flex: 1;
}

.business-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.business-card.featured {
  border-color: var(--primary-500);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.business-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.business-header h4 {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.business-rating {
  font-size: var(--text-sm);
  color: var(--warning-500);
}

.business-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.business-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.detail {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.business-badge {
  font-size: var(--text-sm);
  color: var(--primary-500);
  font-weight: var(--font-medium);
}

/* Mobile Interface Specific */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #000;
  color: white;
  border-radius: 8px 8px 0 0;
  font-size: var(--text-sm);
}

.mobile-chat {
  padding: 1rem;
}

.mobile-response {
  background: white;
  border-radius: 8px;
  padding: 0.75rem;
  margin-top: 0.75rem;
}

.response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.ai-badge {
  background: var(--primary-500);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.source-count {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.mobile-business-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.75rem;
}

.mobile-business-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.mobile-rating {
  font-size: var(--text-sm);
  color: var(--warning-500);
}

.mobile-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.mobile-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mobile-btn {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  background: white;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-btn:hover {
  background: var(--gray-50);
  border-color: var(--primary-500);
}

.mobile-badge {
  font-size: var(--text-sm);
  color: var(--primary-500);
  font-weight: var(--font-medium);
}

/* Claude Interface */
.claude-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #2d2d2d;
  color: white;
  border-radius: 8px 8px 0 0;
}

.claude-logo {
  font-weight: var(--font-semibold);
}

.claude-model {
  font-size: var(--text-sm);
  color: #ccc;
}

.claude-chat {
  padding: 1rem;
}

.user-message {
  background: var(--primary-500);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
}

.claude-response {
  background: white;
  border-radius: 8px;
  padding: 1rem;
}

.claude-thinking {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.thinking-dots {
  display: flex;
  gap: 0.25rem;
}

.thinking-dots .dot {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: thinking 1.2s infinite ease-in-out;
}

.thinking-dots .dot:nth-child(2) {
  animation-delay: -1.1s;
}

.thinking-dots .dot:nth-child(3) {
  animation-delay: -1.0s;
}

@keyframes thinking {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.claude-recommendation h4 {
  margin: 0 0 1rem 0;
  font-size: var(--text-lg);
  color: var(--gray-900);
}

.service-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
}

.service-card.premium {
  border-color: var(--primary-500);
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.service-header h5 {
  margin: 0;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.service-level {
  background: var(--primary-500);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.feature {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.service-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.service-badge {
  font-size: var(--text-sm);
  color: var(--primary-500);
  font-weight: var(--font-medium);
}

/* Gemini Mobile Interface */
.gemini-mobile-interface {
  background: #000;
  border-radius: 25px;
  padding: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto 1rem;
}

/* iPhone Top Section */
.iphone-top {
  background: #000;
  padding: 8px 0 4px;
  position: relative;
}

.notch {
  width: 150px;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 20px;
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.status-left,
.status-center,
.status-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.signal-dots {
  font-size: 8px;
  letter-spacing: 1px;
}

.carrier {
  font-size: 11px;
}

.time {
  font-size: 12px;
  font-weight: 600;
}

.battery {
  font-size: 11px;
}

/* Gemini App Header */
.gemini-header {
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

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

.gemini-icon {
  font-size: 20px;
  font-weight: bold;
}

.gemini-text {
  font-size: 18px;
  font-weight: 600;
}

.gemini-menu {
  font-size: 18px;
  font-weight: bold;
}

/* Gemini Chat Interface */
.gemini-chat {
  background: white;
  padding: 16px;
  min-height: 280px;
}

.gemini-input-container {
  margin-bottom: 16px;
}

.gemini-input {
  background: #f1f3f4;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 14px;
  color: #5f6368;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gemini-response {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.gemini-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.gemini-content {
  flex: 1;
}

.gemini-thinking {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #5f6368;
}

.typing-dots {
  font-size: 10px;
  animation: pulse 1.5s infinite;
}

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

.gemini-recommendation h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #202124;
}

.gemini-business-card {
  border: 1px solid #e8eaed;
  border-radius: 12px;
  padding: 16px;
  background: white;
}

.gemini-business-header {
  margin-bottom: 8px;
}

.gemini-business-header strong {
  display: block;
  font-size: 16px;
  color: #202124;
  margin-bottom: 4px;
}

.gemini-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  font-size: 14px;
}

.rating-text {
  font-size: 13px;
  color: #5f6368;
}

.gemini-description {
  font-size: 14px;
  color: #5f6368;
  line-height: 1.4;
  margin: 12px 0;
}

.gemini-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #5f6368;
}

.detail-icon {
  width: 16px;
  text-align: center;
}

.gemini-actions {
  display: flex;
  gap: 8px;
  margin: 16px 0 12px;
  flex-wrap: wrap;
}

.gemini-btn {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gemini-btn.primary {
  background: #1a73e8;
  color: white;
}

.gemini-btn.primary:hover {
  background: #1557b0;
}

.gemini-btn.secondary {
  background: #f8f9fa;
  color: #5f6368;
  border: 1px solid #dadce0;
}

.gemini-btn.secondary:hover {
  background: #f1f3f4;
  border-color: #c4c7c5;
}

.gemini-badge {
  font-size: 12px;
  color: #1a73e8;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
}

/* Perplexity Mobile Interface */
.perplexity-mobile-interface {
  background: #000;
  border-radius: 25px;
  padding: 0;
  margin-bottom: 1rem;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto 1rem;
}

/* Perplexity App Header */
.perplexity-header {
  background: linear-gradient(135deg, #20808d, #1a6b73);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

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

.perplexity-icon {
  font-size: 20px;
  font-weight: bold;
}

.perplexity-text {
  font-size: 18px;
  font-weight: 600;
}

.perplexity-menu {
  font-size: 18px;
  font-weight: bold;
}

/* Perplexity Chat Interface */
.perplexity-chat {
  background: white;
  padding: 16px;
  min-height: 280px;
}

.perplexity-input-container {
  margin-bottom: 16px;
}

.perplexity-input {
  background: #f6f8fa;
  border: 1px solid #e1e4e8;
  border-radius: 20px;
  padding: 12px 16px;
  font-size: 14px;
  color: #586069;
  display: flex;
  align-items: center;
  gap: 8px;
}

.perplexity-response {
  margin-bottom: 16px;
}

.perplexity-response-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.perplexity-response-header .ai-badge {
  background: #20808d;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.perplexity-response-header .source-count {
  font-size: 12px;
  color: #586069;
  background: #f6f8fa;
  padding: 4px 8px;
  border-radius: 10px;
}

.perplexity-answer {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
}

.answer-text {
  font-size: 14px;
  color: #24292e;
  margin-bottom: 12px;
  line-height: 1.4;
}

.perplexity-business-card {
  background: white;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.perplexity-business-header {
  margin-bottom: 8px;
}

.perplexity-business-header strong {
  display: block;
  font-size: 16px;
  color: #24292e;
  margin-bottom: 4px;
}

.perplexity-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.perplexity-rating .stars {
  font-size: 14px;
}

.perplexity-rating .rating-text {
  font-size: 13px;
  color: #586069;
  font-weight: 500;
}

.perplexity-description {
  font-size: 14px;
  color: #586069;
  line-height: 1.4;
  margin: 12px 0;
}

.perplexity-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.perplexity-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #586069;
}

.perplexity-details .detail-icon {
  width: 16px;
  text-align: center;
}

.perplexity-actions {
  display: flex;
  gap: 8px;
  margin: 16px 0 12px;
  flex-wrap: wrap;
}

.perplexity-btn {
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.perplexity-btn.primary {
  background: #20808d;
  color: white;
}

.perplexity-btn.primary:hover {
  background: #1a6b73;
}

.perplexity-btn.secondary {
  background: #f6f8fa;
  color: #586069;
  border: 1px solid #e1e4e8;
}

.perplexity-btn.secondary:hover {
  background: #f1f3f4;
  border-color: #d0d7de;
}

.perplexity-badge {
  font-size: 12px;
  color: #20808d;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: white;
}

.features-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.section-subtitle {
  font-size: var(--text-xl);
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* Opportunity Section - FOMO Focused */
.opportunity-section {
  padding: 5rem 0;
  background: var(--gray-50);
}

.opportunity-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Urgency Statistics */
.urgency-stats {
  margin: 4rem 0;
}

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

.urgency-stat {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.urgency-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-500);
}

.stat-visual {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-500);
}

.stat-number-large {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--primary-500);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label-large {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.stat-description {
  color: var(--gray-600);
  line-height: 1.5;
  font-size: var(--text-base);
}

/* Market Shift Section */
.market-shift {
  margin: 4rem 0;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid var(--gray-200);
}

.shift-title {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 2.5rem;
}

.shift-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.shift-before,
.shift-after {
  padding: 2rem;
  border-radius: 12px;
}

.shift-before {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid var(--gray-200);
}

.shift-after {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
}

.shift-before h4,
.shift-after h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 1.5rem;
}

.shift-before h4 {
  color: var(--gray-700);
}

.shift-after h4 {
  color: #16a34a;
}

.shift-before ul,
.shift-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shift-before li,
.shift-after li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: var(--gray-700);
}

.shift-before li:last-child,
.shift-after li:last-child {
  border-bottom: none;
}

/* Competitive Advantage */
.competitive-advantage {
  margin: 4rem 0;
}

.advantage-title {
  text-align: center;
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 2.5rem;
}

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

.advantage-point {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.advantage-point:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-500);
}

.advantage-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-500);
}

.advantage-point h4 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.advantage-point p {
  color: var(--gray-600);
  line-height: 1.5;
}

/* Urgency CTA */
.urgency-cta {
  margin: 4rem 0;
}

.cta-warning {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-warning h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.cta-warning > p {
  font-size: var(--text-lg);
  color: var(--gray-700);
  margin-bottom: 2rem;
}

.timeline-pressure {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-item {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--primary-500);
  text-align: left;
  color: var(--gray-700);
}

.timeline-item strong {
  color: var(--primary-500);
}

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

.btn-urgent {
  background: var(--primary-500);
  border-color: var(--primary-500);
  font-weight: var(--font-bold);
}

.btn-urgent:hover {
  background: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.social-proof {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  align-items: center;
}

.proof-item {
  color: var(--gray-900);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

.cta-note {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-500), var(--purple-500));
  color: white;
}

.cta-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: var(--text-xl);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-actions .btn {
  flex: none;
  min-width: 140px;
}

.cta-actions .btn-primary {
  background: white;
  color: var(--primary-500);
  border-color: white;
}

.cta-actions .btn-primary:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1rem;
}

.footer-container {
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand img {
  width: 100px;
  height: auto;
}

.footer-brand strong {
  font-size: var(--text-xl);
  color: white;
}

.footer-brand p {
  color: var(--gray-400);
  margin: 0;
}

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

.footer-column h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
}

.footer-column a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 1rem;
}

.footer-bottom-container {
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--gray-400);
}

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

.footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .graphics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .graphic-item {
    padding: 1rem;
  }

  .features, .business-example, .cta-section {
    padding: 3rem 0;
  }

  .features-container, .example-container, .cta-container {
    padding: 0 1rem;
  }

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

  .demo-tabs {
    flex-wrap: wrap;
  }

  .tab-button {
    flex: 1;
    min-width: 120px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  /* Opportunity section mobile adjustments */
  .urgency-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .urgency-stat {
    padding: 2rem;
  }

  .stat-number-large {
    font-size: var(--text-4xl);
  }

  .shift-comparison {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shift-before,
  .shift-after {
    padding: 1.5rem;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .advantage-point {
    padding: 1.5rem;
  }

  .cta-warning {
    padding: 2rem;
  }

  .timeline-pressure {
    gap: 0.75rem;
  }

  .timeline-item {
    padding: 0.75rem;
  }

  .social-proof {
    gap: 0.75rem;
  }
}

/* Pricing Page Specific Styles */
.pricing-hero {
  padding: 4rem 0 4.5rem 0; /* Reduced bottom padding by ~25px */
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.toggle-label {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
}

.toggle-input {
  display: none;
}

.toggle-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.toggle-monthly,
.toggle-annual {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toggle-monthly.active,
.toggle-annual.active {
  background: var(--primary-500);
  color: white;
}

.toggle-savings {
  background: var(--success-500);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.pricing-plans {
  padding: 2rem 0; /* Reduced top padding since toggle is now inside */
  background: var(--gray-50); /* Add grey background to the entire section */
}

.pricing-toggle-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 2rem 2rem 2.5rem 2rem; /* Increased bottom padding by ~25px (1.5rem more) */
  display: flex;
  justify-content: center;
}

.plans-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.popular {
  border-color: var(--primary-500);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.plan-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.plan-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.plan-name {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--primary-500);
}

.price-amount.hidden {
  display: none;
}

.price-period {
  font-size: var(--text-lg);
  color: var(--gray-600);
}

.plan-description {
  color: var(--gray-600);
  margin: 0;
}

.plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  color: var(--success-500);
  font-weight: var(--font-bold);
}

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

.btn-full {
  width: 100%;
}

.plan-note {
  margin-top: 0.75rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.feature-comparison {
  padding: 4rem 0;
  background: var(--gray-50);
}

.comparison-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
  background: var(--gray-50);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
}

.feature-col {
  width: 40%;
}

.plan-col {
  width: 20%;
  text-align: center;
}

.popular-col {
  background: var(--primary-50);
  position: relative;
}

.feature-name {
  font-weight: var(--font-medium);
  color: var(--gray-900);
}

.feature-value {
  text-align: center;
  color: var(--gray-700);
  font-size: var(--text-sm);
}

.pricing-faq {
  padding: 4rem 0;
}

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

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

.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary-500);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.pricing-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-500), var(--purple-500));
  color: white;
}

.cta-guarantees {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.guarantee {
  font-size: var(--text-sm);
  opacity: 0.9;
}

/* Contact Page Specific Styles */
.contact-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}

.contact-options {
  padding: 3rem 0;
}

.options-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

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

.contact-method {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-method:hover {
  border-color: var(--primary-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-method h3 {
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.contact-method p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.method-details {
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

.response-time {
  font-size: var(--text-sm);
  color: var(--primary-500);
  font-weight: var(--font-medium);
}

.contact-form-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.form-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.form-content {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.form-header p {
  color: var(--gray-600);
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-label {
  font-weight: var(--font-medium);
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: var(--text-base);
  transition: all 0.2s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
}

.form-error {
  color: #ef4444;
  font-size: var(--text-sm);
  margin-top: 0.25rem;
  display: none;
}

.character-count {
  text-align: right;
  margin-top: 0.25rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.counter-normal { color: var(--gray-500); }
.counter-caution { color: var(--warning-500); }
.counter-warning { color: #ef4444; }

.btn-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.form-note {
  text-align: center;
  margin-top: 1rem;
}

.form-note p {
  color: var(--gray-600);
  font-size: var(--text-sm);
  margin: 0;
}

.form-message {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.success-message {
  border-color: var(--success-500);
  background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.error-message {
  border-color: #ef4444;
  background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.message-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.form-message h3 {
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.form-message p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.message-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-section {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
}

.info-section h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.info-item:last-child {
  border-bottom: none;
}

.info-icon {
  font-size: 1.25rem;
}

.info-content strong {
  display: block;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.info-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: var(--text-sm);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--gray-600);
}

.hours-note {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--gray-500);
  font-style: italic;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-500);
  text-decoration: none;
  font-size: var(--text-sm);
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.quick-link:hover {
  color: var(--primary-600);
}

.contact-faq {
  padding: 4rem 0;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 12px;
}

.faq-cta p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

/* About Page Specific Styles */
.about-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
}

.story-section,
.idea-section,
.team-section,
.about-cta {
  padding: 4rem 0;
}

.story-section {
  background: white;
}

.idea-section {
  background: var(--gray-50);
}

.team-section {
  background: white;
}

.story-container,
.idea-container,
.team-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.story-content,
.idea-content,
.team-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-text,
.idea-text,
.team-text {
  font-size: var(--text-lg);
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-text:last-of-type,
.idea-text:last-of-type,
.team-text:last-of-type {
  margin-bottom: 0;
}

.team-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

/* Additional responsive styles for contact and about pages */
@media (max-width: 768px) {
  .form-container {
    padding: 0 1rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .story-content,
  .idea-content,
  .team-content {
    text-align: left;
  }

  .team-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .pricing-card.popular {
    transform: none;
  }

  .plans-container {
    padding: 0 1rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
    font-size: var(--text-sm);
  }
}

/* Hidden utility class */
.hidden {
  display: none !important;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #0a0a0a;
    --bg-secondary: var(--gray-900);
    --bg-tertiary: var(--gray-800);
    --text-primary: #ffffff;
    --text-secondary: var(--gray-300);
    --text-tertiary: var(--gray-400);
  }
}
/* Checkout Page Styles */
.checkout-main {
  min-height: 100vh;
  background: var(--gray-50);
  padding: 2rem 0;
}

.checkout-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.checkout-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  position: relative;
}

.checkout-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: var(--gray-50);
  padding: 0 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-semibold);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: var(--primary-600);
  color: white;
}

.progress-step.completed .step-number {
  background: var(--success-500);
  color: white;
}

.step-label {
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-weight: var(--font-medium);
}

.progress-step.active .step-label {
  color: var(--primary-600);
}

.checkout-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

.checkout-form {
  margin: 0;
}

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: var(--text-base);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.plan-summary {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.plan-summary h3 {
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.plan-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.plan-details strong {
  color: var(--primary-600);
  font-size: var(--text-lg);
}

.checkout-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-secondary {
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--gray-300);
}

.btn-primary {
  background: var(--primary-600);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-primary:hover {
  background: var(--primary-500);
}

.btn-primary:disabled {
  background: var(--gray-300);
  cursor: not-allowed;
}

.loading {
  opacity: 0.7;
  pointer-events: none;
}

.success-message {
  text-align: center;
  padding: 2rem;
}

.success-message .icon {
  width: 80px;
  height: 80px;
  background: var(--success-500);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.success-message h2 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Stripe Elements Styling */
.stripe-elements {
  margin: 1rem 0;
}

#payment-element {
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background: white;
}

/* Streaming Text Animation Styles */
.ai-response[data-stream="true"],
.ai-response-mobile[data-stream="true"],
.ai-response-claude[data-stream="true"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.typing-cursor,
.typing-cursor-mobile,
.typing-cursor-claude {
  opacity: 0;
  color: #666;
  font-weight: bold;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* User message styles for consistency */
.user-message {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.user-message-mobile {
  margin-bottom: 12px;
}

.user-message-claude {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.message-text {
  background: #f5f5f5;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
}

.message-bubble {
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 14px;
  max-width: 80%;
  margin-left: auto;
  margin-right: 16px;
}

/* AI response styles */
.ai-response {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.ai-response-mobile {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.ai-response-claude {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.ai-avatar-mobile {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.response-text,
.response-text-mobile,
.response-text-claude {
  background: white;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
  white-space: pre-line;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.response-text-mobile {
  padding: 10px;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .checkout-container {
    padding: 0 0.5rem;
  }

  .checkout-content {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .checkout-actions {
    flex-direction: column;
  }

  .checkout-progress::before {
    left: 10%;
    right: 10%;
  }
}
