@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --background: 0 0% 100%;
  --foreground: 220 20% 10%;

  --card: 0 0% 98%;
  --card-foreground: 220 20% 10%;

  --popover: 0 0% 100%;
  --popover-foreground: 220 20% 10%;

  --primary: 24 95% 50%;
  --primary-foreground: 0 0% 100%;

  --secondary: 220 15% 95%;
  --secondary-foreground: 220 20% 10%;

  --muted: 220 15% 92%;
  --muted-foreground: 220 10% 40%;

  --accent: 24 95% 50%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 220 15% 88%;
  --input: 220 15% 88%;
  --ring: 24 95% 50%;

  --radius: 0.75rem;

  /* Custom tokens */
  --orange-glow: 24 95% 50%;
  --orange-light: 24 100% 60%;
  --orange-dark: 24 90% 42%;
  --surface-elevated: 220 15% 96%;
  --text-secondary: 220 10% 45%;
  --gradient-orange: linear-gradient(135deg, hsl(24, 95%, 50%) 0%, hsl(30, 100%, 55%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(220, 15%, 98%) 100%);
  --shadow-glow: 0 0 60px -10px hsl(24, 95%, 50%, 0.35);
  --shadow-card: 0 8px 32px -8px hsl(220, 20%, 10%, 0.1);
}

.dark {
  --background: 220 20% 4%;
  --foreground: 0 0% 98%;

  --card: 220 18% 8%;
  --card-foreground: 0 0% 98%;

  --popover: 220 18% 8%;
  --popover-foreground: 0 0% 98%;

  --primary: 24 95% 53%;
  --primary-foreground: 0 0% 100%;

  --secondary: 220 15% 12%;
  --secondary-foreground: 0 0% 98%;

  --muted: 220 15% 15%;
  --muted-foreground: 220 10% 55%;

  --accent: 24 95% 53%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 220 15% 18%;
  --input: 220 15% 18%;
  --ring: 24 95% 53%;

  /* Custom tokens */
  --orange-glow: 24 95% 53%;
  --orange-light: 24 100% 65%;
  --orange-dark: 24 90% 45%;
  --surface-elevated: 220 18% 10%;
  --text-secondary: 220 10% 65%;
  --gradient-orange: linear-gradient(135deg, hsl(24, 95%, 53%) 0%, hsl(30, 100%, 60%) 100%);
  --gradient-dark: linear-gradient(180deg, hsl(220, 20%, 4%) 0%, hsl(220, 18%, 8%) 100%);
  --shadow-glow: 0 0 60px -10px hsl(24, 95%, 53%, 0.4);
  --shadow-card: 0 8px 32px -8px hsl(0, 0%, 0%, 0.5);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-orange {
  background: var(--gradient-orange);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.bg-surface {
  background-color: hsl(var(--surface-elevated));
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px hsl(var(--orange-glow) / 0.3);
  }
  50% {
    box-shadow: 0 0 40px hsl(var(--orange-glow) / 0.5);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


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

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

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: hsl(var(--foreground));
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.logo-icon span {
  color: hsl(var(--primary-foreground));
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: hsl(var(--foreground));
}

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

@media (min-width: 768px) {
  .nav-links-desktop {
    display: flex;
  }
}

.nav-links-desktop a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links-desktop a:hover {
  color: hsl(var(--foreground));
}

.navbar-actions-desktop {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .navbar-actions-desktop {
    display: flex;
  }
}

.theme-toggle-wrapper {
  position: relative;
}

.theme-toggle-btn {
  background: transparent;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: hsl(var(--foreground));
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.theme-toggle-btn:hover {
  background-color: hsl(var(--accent) / 0.1);
}

.theme-icon-sun,
.theme-icon-moon {
  position: absolute;
  transition: all 0.3s;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.dark .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}

.dark .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: hsl(var(--foreground));
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
}

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

.menu-icon,
.close-icon {
  transition: opacity 0.2s, transform 0.2s;
}

.close-icon {
  position: absolute;
  opacity: 0;
  transform: rotate(90deg);
}

.mobile-menu-btn.active .menu-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.mobile-menu-btn.active .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.mobile-menu {
  display: none;
  padding: 1.5rem 0;
  border-top: 1px solid hsl(var(--border) / 0.5);
  animation: fade-in 0.8s ease-out forwards;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
}

.mobile-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.mobile-theme-toggle span {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  padding: 0.625rem 1.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  outline: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

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

.btn-primary:hover {
  box-shadow: 0 0 80px -10px hsl(var(--orange-glow) / 0.6);
  transform: scale(1.02);
}

.btn-primary:active {
  transform: scale(0.98);
}

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

.btn-outline:hover {
  background-color: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
}

.btn-ghost {
  background: transparent;
  color: hsl(var(--foreground));
}

.btn-ghost:hover {
  background-color: hsl(var(--accent) / 0.1);
  color: hsl(var(--accent-foreground));
}

.btn-hero {
  background: var(--gradient-orange);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 0.75rem;
}

.btn-hero:hover {
  box-shadow: 0 0 100px -10px hsl(var(--orange-glow) / 0.7);
  transform: scale(1.03);
}

.btn-hero:active {
  transform: scale(0.98);
}

.btn-hero-outline {
  border: 2px solid hsl(var(--foreground) / 0.2);
  background: transparent;
  color: hsl(var(--foreground));
  font-size: 1rem;
  padding: 0.875rem 2.5rem;
  border-radius: 0.75rem;
}

.btn-hero-outline:hover {
  background-color: hsl(var(--foreground) / 0.05);
  border-color: hsl(var(--foreground) / 0.4);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
  border-radius: 0.75rem;
}

/* Main Content */
.main-content {
  min-height: 100vh;
  background-color: hsl(var(--background));
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, hsl(var(--primary) / 0.15), transparent 50%);
}

.hero-bg-glow-1 {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 24rem;
  height: 24rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  filter: blur(120px);
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-bg-glow-2 {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 16rem;
  height: 16rem;
  background-color: hsl(var(--primary) / 0.05);
  border-radius: 50%;
  filter: blur(100px);
}

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

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.1s, transform 0.6s ease-out 0.1s;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.2s, transform 0.6s ease-out 0.2s;
}

@media (min-width: 1024px) {
  .hero-description {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.25rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    justify-content: flex-start;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.stat-item {
  text-align: center;
}

@media (min-width: 1024px) {
  .stat-item {
    text-align: left;
  }
}

.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 1.875rem;
  }
}

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

.hero-visual {
  position: relative;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.phone-mockup {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 3rem;
  padding: 0.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  margin: 0 auto;
  width: 20rem;
}

.phone-inner {
  background-color: hsl(var(--surface-elevated));
  border-radius: 2.5rem;
  overflow: hidden;
}

.phone-header {
  background-color: hsl(var(--primary) / 0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-avatar svg {
  color: hsl(var(--primary-foreground));
}

.phone-header-title {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.phone-header-subtitle {
  font-size: 0.75rem;
  color: hsl(var(--primary));
}

.phone-chat {
  padding: 1rem;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-message {
  display: flex;
}

.chat-message-right {
  justify-content: flex-end;
}

.chat-message-left {
  justify-content: flex-start;
}

.chat-bubble {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  max-width: 80%;
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}

.chat-bubble-right {
  background-color: hsl(var(--primary) / 0.2);
  border-bottom-right-radius: 0.25rem;
}

.chat-bubble-left {
  background-color: hsl(var(--muted));
  border-bottom-left-radius: 0.25rem;
}

.floating-element {
  position: absolute;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid hsl(var(--border) / 0.5);
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  top: -1.5rem;
  right: -1.5rem;
}

.floating-1 svg {
  color: hsl(var(--primary));
}

.floating-2 {
  bottom: -1rem;
  left: -2rem;
  padding: 0.75rem 1rem;
  animation-delay: 1s;
}

.floating-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #10b981;
}

.floating-status span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-alt {
  background-color: hsl(var(--surface-elevated) / 0.5);
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom, hsl(var(--primary) / 0.08), transparent 60%);
  pointer-events: none;
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 42rem;
  margin: 0 auto;
}

/* Steps/How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.step-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
  height: 100%;
}

.step-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-glow) / 0.2;
}

.step-number {
  font-family: 'Sora', sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: hsl(var(--primary) / 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s;
}

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

.step-icon svg {
  color: hsl(var(--primary-foreground));
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.step-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-0.25rem);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-orange);
  box-shadow: var(--shadow-glow);
}

.feature-icon svg {
  color: hsl(var(--primary));
  transition: color 0.3s;
}

.feature-card:hover .feature-icon svg {
  color: hsl(var(--primary-foreground));
}

.feature-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}

.feature-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 75rem;
  margin: 0 auto;
}

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

.pricing-card {
  position: relative;
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.5);
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: hsl(var(--primary) / 0.3);
}

.pricing-card-popular {
  border-color: hsl(var(--primary));
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .pricing-card-popular {
    transform: scale(1.1);
  }
}

.pricing-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-orange);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground));
}

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

.pricing-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

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

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-value {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

.price-period {
  color: hsl(var(--muted-foreground));
}

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

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-features span {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.pricing-trust {
  text-align: center;
  margin-top: 3rem;
}

.pricing-trust p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-text {
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .about-text {
    margin-bottom: 0;
  }
}

.about-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.75;
}

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

.value-item {
  text-align: center;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.value-icon svg {
  color: hsl(var(--primary));
}

.value-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

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

.about-stats-card {
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-card);
}

.stats-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
  text-align: center;
}

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

.about-stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: hsl(var(--surface-elevated) / 0.5);
}

.about-stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .about-stat-value {
    font-size: 2.25rem;
  }
}

.about-stat-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* FAQ */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.5);
  padding: 0 1.5rem;
  transition: border-color 0.3s;
}

.faq-item.active {
  border-color: hsl(var(--primary) / 0.3);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: hsl(var(--primary));
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: hsl(var(--muted-foreground));
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: hsl(var(--muted-foreground));
  padding-bottom: 1.5rem;
  line-height: 1.75;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: hsl(var(--primary));
}

.contact-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.contact-value {
  color: hsl(var(--foreground));
  font-weight: 500;
}

.contact-testimonial {
  background-color: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

.testimonial-text {
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-bottom: 1rem;
}

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

.testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  color: hsl(var(--primary-foreground));
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.contact-form-wrapper {
  background-color: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border) / 0.5);
}

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

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

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

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--surface-elevated));
  border: 1px solid hsl(var(--border) / 0.5);
  color: hsl(var(--foreground));
  font-size: 1rem;
  transition: all 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}

.form-textarea {
  resize: none;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsl(var(--background)), hsl(var(--primary) / 0.05), hsl(var(--background)));
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-color: hsl(var(--primary) / 0.2);
  border-radius: 50%;
  filter: blur(150px);
}

.cta-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.2);
  margin-bottom: 2rem;
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
  color: hsl(var(--primary));
}

.cta-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--primary));
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-description {
    font-size: 1.25rem;
  }
}

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

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-trust {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  margin-top: 2rem;
}

/* Footer */
.footer {
  background-color: hsl(var(--card));
  border-top: 1px solid hsl(var(--border) / 0.5);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 2;
  }
}

.footer-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
  max-width: 24rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: hsl(var(--surface-elevated));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

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

.footer-link-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

