/* Fairvisor Landing Page Styles - Zixflow Inspired */
:root {
  --color-primary: #3a63ef;
  --color-primary-dark: #2d4fd1;
  --color-secondary: #f59e0b;
  --color-accent: #10b981;
  --color-green: #10b981;
  --color-green-dark: #059669;
  --color-tertiary: #f8fafc;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-border: #e2e8f0;
  --color-background: #ffffff;
  --color-surface: #f8fafc;
  --gradient-primary: linear-gradient(135deg, #3a63ef 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

/* Header */
.header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

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

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
}

.logo img {
  width: 48px;
  height: 48px;
  margin-right: 0.75rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

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

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.hamburger-line {
  width: 2rem;
  height: 0.25rem;
  background: var(--color-primary);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger:hover .hamburger-line {
  background: var(--color-primary-dark);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 9;
  padding: 2rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.mobile-nav .nav-links {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav .nav-links a {
  font-size: 1.125rem;
  padding: 0.75rem 0;
  display: block;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav .nav-buttons {
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Desktop Navigation - Show on larger screens */
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }
}

/* Hero Section - Light */
.hero {
  padding: 6rem 0 8rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%233a63ef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

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

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}

/* Hero Before/After Section */
.hero-before-after {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.before-after-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.before-after-item.before {
  border-left: 4px solid #ef4444;
}

.before-after-item.after {
  border-left: 4px solid var(--color-accent);
}

.before-after-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.before-after-item p {
  color: var(--color-text-light);
  margin: 0;
}


/* Process Diagram */
.process-section {
  padding: 4rem 0;
  text-align: center;
  background-color: var(--color-surface);
}

.process-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.process-section p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

.process-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.process-step {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: white;
  min-width: 120px;
  text-align: center;
}

.process-step.api {
  background-color: var(--color-primary);
}

.process-step.edge {
  background-color: var(--color-secondary);
}

.process-step.dashboard {
  background-color: var(--color-tertiary);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--color-text-light);
}

/* Problem-Solution Section - Dark */
.problem-solution {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.problem-solution h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.problem-solution-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-solution-before,
.problem-solution-after {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: left;
  backdrop-filter: blur(10px);
}

.problem-solution-before h3,
.problem-solution-after h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.problem-solution-before h3 {
  color: #fca5a5;
}

.problem-solution-after h3 {
  color: #86efac;
}

.problem-solution-description {
  font-size: 1.125rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.problem-solution-points {
  list-style: none;
  padding: 0;
}

.problem-solution-points li {
  color: #e2e8f0;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.problem-solution-before .problem-solution-points li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #fca5a5;
  font-weight: bold;
}

.problem-solution-after .problem-solution-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #86efac;
  font-weight: bold;
}

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

.features h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon img {
  width: 1.5rem;
  height: 1.5rem;
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feature-content p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-highlight {
  display: inline-block;
  background: var(--gradient-secondary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}


/* Demo Section */
.demo-section {
  padding: 4rem 0;
  background-color: var(--color-surface);
  text-align: center;
}

.demo-section p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
}

.demo-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.demo-before, .demo-after {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
}

.demo-before h3, .demo-after h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.demo-before p, .demo-after p {
  color: var(--color-text-light);
  margin: 0;
}

.demo-button {
  margin-top: 2rem;
}

/* How It Works Section */
.how-it-works-section {
  padding: 4rem 0;
  text-align: center;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.before, .after {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: left;
}

.before h3, .after h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.before p, .after p {
  color: var(--color-text-light);
  margin: 0;
}

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

.step {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: left;
}

.step p {
  color: var(--color-text-light);
  margin: 0;
}

.try-live {
  background: var(--color-tertiary);
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.try-live h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.try-live p {
  color: var(--color-text-light);
  margin: 0;
}

/* Use Cases Section - Light */
.use-cases {
  padding: 6rem 0;
  background-color: var(--color-background);
  text-align: center;
}

.use-cases h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.use-cases-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.use-case-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.use-case-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.use-case-description {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.use-case-example {
  color: var(--color-text);
  background: var(--color-surface);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0;
  font-style: italic;
  border-left: 4px solid var(--color-primary);
}

.example {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.example p {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.875rem;
  color: var(--color-text);
  margin: 0;
}

/* Integrations Section - Dark */
.integrations {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.integrations h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.integrations-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.integrations-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.integration-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Integration logo hover effects removed */

.integration-logo img {
  width: 48px;
  height: 48px;
  opacity: 0.8;
}

.integration-logo span {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.875rem;
}

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

/* Pricing Section - Dark */
.pricing-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.pricing-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.pricing-section .pricing-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  border-color: var(--color-primary);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.original-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.pricing-card p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-card .features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card .features li {
  color: var(--color-text);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

.pricing-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.note {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

/* Center the CTA button in pricing cards */
.pricing-card .btn {
  display: block;
  margin: 0 auto;
  text-align: center;
}

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

/* Security Section */
.security-section {
  padding: 4rem 0;
  background-color: #f9fafb;
  text-align: center;
}

.security-points {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.security-points li {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.security-quote {
  background: white;
  border-left: 4px solid var(--color-primary);
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.security-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text);
  margin: 0;
}

/* Hesitant Section */
.hesitant-section {
  padding: 4rem 0;
  text-align: center;
}

.hesitant-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hesitant-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.hesitant-section p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.benefits {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.benefits li {
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.guarantee {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

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

/* Manifesto Section */
.manifesto-section {
  padding: 4rem 0;
  background-color: #000;
  color: white;
  text-align: center;
}

.manifesto-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.manifesto-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
}

.manifesto-points {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.manifesto-points li {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 1rem;
}

/* Testimonials Section - Light */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--color-background);
  color: var(--color-text);
  text-align: center;
}

.testimonials-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Waitlist Section - Dark */
.waitlist-section {
  padding: 8rem 0 6rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  text-align: center;
}

.waitlist-section h2 {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.waitlist-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  padding: 2.5rem;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

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

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.author-company {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0;
}

/* CTA Section - Light */
.cta {
  padding: 6rem 0;
  background-color: var(--color-background);
  color: var(--color-text);
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.cta .btn-outline:hover {
  background-color: white;
  color: var(--color-primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-green {
  background: var(--gradient-green);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--color-border);
  background-color: #f9fafb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand h3 {
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--color-text-light);
  font-size: 0.875rem;
}

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

.footer-links a {
  color: var(--color-text-light);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 0 6rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  /* Show hamburger menu on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }

  /* Mobile navigation is handled by the base styles and JavaScript toggle */

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

  .process-diagram {
    flex-direction: column;
  }

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

  .demo-comparison {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .problem-solution-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-card::before {
    font-size: 3rem;
    top: -0.25rem;
  }

  .hero-before-after {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
  background-color: var(--color-background);
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2rem;
  text-align: center;
}

.legal-body {
  line-height: 1.7;
  color: var(--color-text);
}

.legal-body h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-body h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-body p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.legal-body ul, .legal-body ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.legal-body li {
  margin-bottom: 0.5rem;
}

.legal-body strong {
  font-weight: 600;
  color: var(--color-text);
}

.legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
}

.legal-body a:hover {
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-body h2 {
    font-size: 1.5rem;
  }

  .legal-body h3 {
    font-size: 1.25rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background-color: var(--color-background);
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin: 0;
}

.contact-subtitle a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-subtitle a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1.125rem;
  }
}

/* LaunchList Form Styling */
.launchlist-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.launchlist-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background: white;
  color: #1e293b;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.launchlist-form input[type="email"]:focus {
  border-color: #3a63ef;
  box-shadow: 0 0 0 3px rgba(58, 99, 239, 0.1);
}

.launchlist-form input[type="email"]::placeholder {
  color: #64748b;
}

.launchlist-form button[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.launchlist-form button[type="submit"]:hover {
  background: #059669;
}

.launchlist-form button[type="submit"]:active {
  background: #047857;
}

@media (max-width: 480px) {
  .launchlist-widget form {
    flex-direction: column;
    width: 100%;
  }

  .launchlist-widget input[type="email"] {
    width: 100%;
    min-width: auto;
  }

  .launchlist-widget button[type="submit"] {
    width: 100%;
  }
}
