/* KoiraKaveri Landing Page - Plain CSS */

/* CSS Variables */
:root {
  /* Navy/Slate base with warm amber accents */
  --background: hsl(222, 47%, 11%);
  --foreground: hsl(210, 40%, 98%);

  --card: hsl(217, 33%, 17%);
  --card-foreground: hsl(210, 40%, 98%);

  /* Warm amber primary */
  --primary: hsl(38, 92%, 50%);
  --primary-foreground: hsl(222, 47%, 11%);

  /* Deep blue secondary */
  --secondary: hsl(217, 91%, 60%);
  --secondary-foreground: hsl(210, 40%, 98%);

  --muted: hsl(217, 33%, 25%);
  --muted-foreground: hsl(215, 20%, 65%);

  --border: hsl(217, 33%, 25%);

  /* Feature colors */
  --emerald: hsl(142, 71%, 45%);
  --rose: hsl(0, 84%, 60%);
  --violet: hsl(263, 70%, 50%);

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(38, 92%, 50%),
    hsl(28, 92%, 45%)
  );
  --gradient-hero: linear-gradient(
    180deg,
    hsl(222, 47%, 14%),
    hsl(222, 47%, 8%)
  );

  /* Shadows */
  --shadow-card: 0 4px 20px -4px hsla(222, 47%, 5%, 0.5);
  --shadow-button: 0 4px 14px -3px hsla(38, 92%, 50%, 0.4);

  --radius: 1rem;
}

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

/* Base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-wrapper {
  min-height: 100vh;
}

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

/* Animations */
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px hsla(38, 92%, 50%, 0.3);
  }
  50% {
    box-shadow: 0 0 30px hsla(38, 92%, 50%, 0.5);
  }
}

.animate-slide-up {
  animation: slide-up 0.4s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

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

.stagger-1 {
  animation-delay: 0.1s;
}
.stagger-2 {
  animation-delay: 0.2s;
}
.stagger-3 {
  animation-delay: 0.3s;
}
.stagger-4 {
  animation-delay: 0.4s;
}

/* Text utilities */
.text-primary {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid hsla(38, 92%, 50%, 0.3);
}

.btn-outline:hover {
  background: hsla(38, 92%, 50%, 0.1);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* Input */
.input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--muted);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
}

.input:focus {
  border-color: var(--primary);
}

.input::placeholder {
  color: var(--muted-foreground);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.logo-icon-sm {
  width: 2rem;
  height: 2rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(142, 71%, 45%, 0.1);
  border: 1px solid hsla(142, 71%, 45%, 0.2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 1.5rem;
}

.gift-icon {
  color: var(--emerald);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.blur-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.blur-circle-1 {
  top: 5rem;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background: hsla(38, 92%, 50%, 0.2);
}

.blur-circle-2 {
  bottom: 2.5rem;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background: hsla(217, 91%, 60%, 0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 3rem 1rem 5rem;
}

/* Hero Two Column Grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* Hero Visual - App Screenshots */
.hero-visual {
  display: none;
  position: relative;
}

.hero-visual-mobile {
  display: block;
  margin-top: 3rem;
}

.hero-mockup-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(38, 92%, 50%, 0.3),
    hsla(217, 91%, 60%, 0.3)
  );
  border-radius: 50%;
  filter: blur(60px);
  transform: scale(0.75);
  z-index: 0;
}

/* Two screens side by side */
.hero-screens {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hero-screen {
  position: relative;
  z-index: 1;
  flex: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px -12px hsla(222, 47%, 5%, 0.6),
    0 0 0 1px hsla(217, 33%, 25%, 0.5);
  background: var(--card);
}

.hero-screens:hover .hero-screen-left {
  transform: rotate(-2deg) scale(1.05);
}
.hero-screens:hover .hero-screen-right {
  transform: rotate(2deg) scale(1.05);
}

.hero-screen-left {
  transform: rotate(-3deg);
  transition: transform 0.3s ease-in-out;
}

.hero-screen-right {
  transform: rotate(3deg) translateY(2rem);
  transition: transform 0.3s ease-in-out;
}

.hero-product-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile screens */
.hero-screens-mobile {
  position: relative;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding: 0 1rem;
}

.hero-screen-mobile {
  position: relative;
  z-index: 1;
  width: 9rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -12px hsla(222, 47%, 5%, 0.5),
    0 0 0 1px hsla(217, 33%, 25%, 0.5);
  background: var(--card);
}

.highlight {
  background: linear-gradient(90deg, var(--primary), hsl(45, 90%, 60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

/* Hero CTA Form */
.hero-cta {
  max-width: 32rem;
  margin: 0 auto;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-input {
  flex: 1;
}

.hero-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
  text-align: center;
}

/* Problem & Solution Section */
.problem-section {
  padding: 4rem 0;
  background: hsla(217, 33%, 17%, 0.3);
}

.problems-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}

.problem-solution-pair {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.problem-card,
.solution-card {
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.problem-card {
  background: hsla(0, 84%, 60%, 0.1);
  border: 1px solid hsla(0, 84%, 60%, 0.2);
}

.problem-icon {
  color: var(--rose);
  flex-shrink: 0;
}

.problem-quote {
  color: var(--foreground);
  font-style: italic;
  font-size: 0.875rem;
  margin: 0;
}

.solution-arrow {
  color: var(--primary);
  flex-shrink: 0;
}

.solution-card {
  background: hsla(142, 71%, 45%, 0.1);
  border: 1px solid hsla(142, 71%, 45%, 0.2);
}

.solution-icon {
  color: var(--emerald);
  flex-shrink: 0;
}

.solution-card p {
  color: var(--foreground);
  font-size: 0.875rem;
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  position: relative;
}

/* Interactive Features Layout */
.features-interactive {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  background: hsla(217, 33%, 17%, 0.3);
  border: 1px solid hsla(217, 33%, 25%, 0.5);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-family: inherit;
  color: inherit;
}

.feature-item:hover {
  background: hsla(217, 33%, 17%, 0.5);
  border-color: var(--border);
}

.feature-item.active {
  background: var(--card);
  border-color: hsla(38, 92%, 50%, 0.5);
  box-shadow: 0 10px 40px -10px hsla(38, 92%, 50%, 0.1);
}

.feature-item-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-item.active .feature-item-icon {
  transform: scale(1.1);
}

.feature-item-content {
  flex: 1;
  min-width: 0;
}

.feature-item-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.feature-item.active .feature-item-content h3 {
  color: var(--foreground);
}

.feature-item-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  opacity: 0.7;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;
  line-height: 1.5;
}

.feature-item.active .feature-item-content p {
  opacity: 1;
  max-height: 5rem;
  margin-top: 0.5rem;
}

.feature-item-arrow {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  opacity: 0.4;
  transition: all 0.3s ease;
  margin-top: 0.25rem;
}

.feature-item.active .feature-item-arrow {
  color: var(--primary);
  opacity: 1;
  transform: translateX(0.25rem);
}

/* Features Display (right side) */
.features-display {
  display: none;
  position: relative;
}

.features-display-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(38, 92%, 50%, 0.2),
    hsla(217, 91%, 60%, 0.1)
  );
  border-radius: 1.5rem;
  filter: blur(60px);
}

.features-display-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  backdrop-filter: blur(12px);
}

.features-display-inner {
  transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotateZ(4deg);
  box-shadow: 24px 16px 64px 0 rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
}

.features-display-inner:hover {
  transform: perspective(1000px) rotateX(8deg) rotateY(-12deg) rotateZ(8deg)
    scale(1.05);
}
.features-screenshot {
  width: auto;
  height: 500px;
  border-radius: 1rem;
  display: block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Progress Indicators */
.features-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.feature-indicator {
  height: 0.375rem;
  width: 0.5rem;
  border-radius: 9999px;
  background: hsla(215, 20%, 65%, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.feature-indicator:hover {
  background: hsla(215, 20%, 65%, 0.5);
}

.feature-indicator.active {
  width: 2.5rem;
  background: hsla(215, 20%, 65%, 0.2);
}

.feature-indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--primary);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

.feature-indicator.active .feature-indicator-progress {
  width: 0;
}

/* Mobile screenshot display */
.features-display-mobile {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-screenshot-mobile {
  width: auto;
  height: 500px;
  border-radius: 1rem;
  border: 1px solid hsla(217, 33%, 25%, 0.5);
  box-shadow: 0 20px 40px -12px hsla(222, 47%, 5%, 0.5);
  transform: perspective(1000px) rotateX(4deg) rotateY(-16deg) rotateZ(4deg);
  box-shadow: 24px 16px 64px 0 rgba(0, 0, 0, 0.08);
  border-radius: 1em;
}

/* Legacy feature cards (keep for backwards compatibility) */
.features-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

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

.feature-card {
  padding: 1.5rem;
  background: hsla(217, 33%, 17%, 0.5);
  border: 1px solid hsla(217, 33%, 25%, 0.5);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-card-large {
  padding: 2rem;
}

.feature-card:hover {
  border-color: hsla(38, 92%, 50%, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon-primary {
  background: hsla(38, 92%, 50%, 0.1);
  color: var(--primary);
}

.feature-icon-secondary {
  background: hsla(217, 91%, 60%, 0.1);
  color: var(--secondary);
}

.feature-icon-emerald {
  background: hsla(142, 71%, 45%, 0.1);
  color: var(--emerald);
}

.feature-icon-rose {
  background: hsla(0, 84%, 60%, 0.1);
  color: var(--rose);
}

.feature-icon-violet {
  background: hsla(263, 70%, 50%, 0.1);
  color: var(--violet);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.feature-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: hsla(38, 92%, 50%, 0.1);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.feature-highlight-secondary {
  background: hsla(217, 91%, 60%, 0.1);
  color: var(--secondary);
}

.feature-highlight-violet {
  background: hsla(263, 70%, 50%, 0.1);
  color: var(--violet);
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background: hsla(217, 33%, 17%, 0.3);
  overflow: hidden;
}

/* Benefits Visual with Dog */
.benefits-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  padding: 2rem 0;
}

.benefits-visual-glow {
  position: absolute;
  inset: 10%;
  background: linear-gradient(
    135deg,
    hsla(38, 92%, 50%, 0.2),
    hsla(217, 91%, 60%, 0.2)
  );
  border-radius: 2rem;
  filter: blur(50px);
  z-index: 0;
}

.benefits-dog-img {
  position: absolute;
  z-index: 1;
  top: 30px;
  width: 100%;
  overflow: hidden;
  height: auto;
  filter: drop-shadow(0 15px 40px hsla(222, 47%, 5%, 0.5));
  border-radius: 2rem;
}

.testimonial-card {
  position: absolute;
  bottom: 1rem;
  left: -1.5rem;
  right: 1.5rem;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: hsla(217, 33%, 17%, 0.95) !important;
  padding: 1.25rem !important;
}

.trust-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: hsla(217, 33%, 17%, 0.5);
  border: 1px solid hsla(217, 33%, 25%, 0.5);
  border-radius: var(--radius);
}

.trust-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.trust-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.trust-card > p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(38, 92%, 50%, 0.1);
  border: 1px solid hsla(38, 92%, 50%, 0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--card);
  border: 1px solid hsla(38, 92%, 50%, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-glow-1 {
  top: -50%;
  left: -20%;
  width: 20rem;
  height: 20rem;
  background: hsla(38, 92%, 50%, 0.15);
}

.cta-glow-2 {
  bottom: -50%;
  right: -20%;
  width: 20rem;
  height: 20rem;
  background: hsla(217, 91%, 60%, 0.1);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content > p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Pricing Page */
.pricing-content {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.pricing-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 40rem;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: hsla(217, 33%, 17%, 0.5);
  border: 1px solid hsla(217, 33%, 25%, 0.5);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: hsla(38, 92%, 50%, 0.3);
  box-shadow: var(--shadow-card);
}

.pricing-card-highlighted {
  border-color: var(--primary);
  box-shadow: 0 0 30px hsla(38, 92%, 50%, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 1rem;
  border-radius: 0 0 0.5rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.pricing-card-header {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
}

.pricing-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--foreground);
}

.pricing-icon-highlighted {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pricing-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.pricing-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 2rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 800;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.feature-included {
  color: var(--foreground);
}

.feature-excluded {
  color: var(--muted-foreground);
  opacity: 0.5;
}

.feature-icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-icon-x {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pricing-faq {
  text-align: center;
  margin-top: 4rem;
  color: var(--muted-foreground);
}

.pricing-faq a {
  color: var(--primary);
  text-decoration: none;
}

.pricing-faq a:hover {
  text-decoration: underline;
}

/* Legal Pages */
.legal-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.legal-header .logo {
  text-decoration: none;
}

.legal-content {
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-intro {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.legal-info-box {
  background: hsla(217, 33%, 17%, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.legal-info-box p {
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.legal-info-box p:last-child {
  margin-bottom: 0;
}

.legal-info-box a {
  color: var(--primary);
  text-decoration: none;
}

.legal-info-box a:hover {
  text-decoration: underline;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-section p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-section ul {
  color: var(--muted-foreground);
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.legal-section a {
  color: var(--primary);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 20rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-content strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.toast-content p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

/* Responsive */
@media (min-width: 640px) {
  .hero-text h1 {
    font-size: 3rem;
  }

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

  .hero-input {
    max-width: 20rem;
  }

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

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-content {
    padding: 4rem 1rem 6rem;
  }

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

  .section-header h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  /* Pricing responsive */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .pricing-card-highlighted {
    transform: scale(1.05);
    z-index: 10;
  }

  .pricing-hero h1 {
    font-size: 3rem;
  }

  /* Features interactive - show description on all items */
  .feature-item-content p {
    max-height: 5rem;
    opacity: 0.7;
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 3.25rem;
  }

  .container {
    padding: 0 2rem;
  }

  /* Two column hero layout on desktop */
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .hero-text {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .hero-text .badge {
    margin-bottom: 1.5rem;
  }

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

  .hero-visual {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .hero-visual-mobile {
    display: none;
  }

  .hero-screens {
    gap: 1.25rem;
  }

  .hero-screen {
    border-radius: 1.75rem;
  }

  /* Features interactive - two column layout */
  .features-interactive {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .features-display {
    display: block;
  }

  .features-display-mobile {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }

  .hero-grid {
    gap: 5rem;
  }

  .hero-screens {
    gap: 1.5rem;
  }

  .hero-screen {
    border-radius: 2rem;
  }
}
