/* Professional Design System for SpeechMend */
:root {
  /* Speech platform color palette - professional, accessible */
  --background: 45 100% 98%;
  --foreground: 215 25% 15%;

  --card: 0 0% 100%;
  --card-foreground: 215 25% 15%;

  /* Primary: Professional blue */
  --primary: 213 94% 68%;
  --primary-foreground: 0 0% 100%;
  --primary-soft: 213 94% 96%;

  /* Secondary: Calming green */
  --secondary: 142 76% 73%;
  --secondary-foreground: 142 76% 15%;
  --secondary-soft: 142 76% 95%;

  /* Accent: Professional coral */
  --accent: 14 100% 75%;
  --accent-foreground: 14 100% 15%;
  --accent-soft: 14 100% 95%;

  /* Muted colors */
  --muted: 45 20% 96%;
  --muted-foreground: 215 15% 45%;

  --border: 45 20% 90%;
  --input: 45 20% 96%;

  /* Professional gradients */
  --gradient-hero: linear-gradient(135deg, hsl(213 94% 68%), hsl(142 76% 73%));
  --gradient-accent: linear-gradient(135deg, hsl(14 100% 75%), hsl(213 94% 68%));
  --gradient-soft: linear-gradient(180deg, hsl(45 100% 98%), hsl(213 94% 96%));

  /* Professional shadows */
  --shadow-card: 0 8px 30px -8px hsl(215 25% 15% / 0.1);
  --shadow-soft: 0 4px 20px -4px hsl(213 94% 68% / 0.15);
  --shadow-button: 0 4px 15px -2px hsl(213 94% 68% / 0.3);

  /* Typography scale */
  --radius: 0.5rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
}

/* Dark mode - Professional dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --background: 215 25% 8%;
    --foreground: 45 20% 95%;
    --card: 215 25% 10%;
    --card-foreground: 45 20% 95%;
    --muted: 215 25% 15%;
    --muted-foreground: 215 15% 65%;
    --border: 215 25% 20%;
    --input: 215 25% 15%;

    --primary-soft: 213 94% 20%;
    --secondary-soft: 142 76% 15%;
    --accent-soft: 14 100% 15%;

    --gradient-hero: linear-gradient(135deg, hsl(213 94% 45%), hsl(142 76% 50%));
    --gradient-accent: linear-gradient(135deg, hsl(14 100% 60%), hsl(213 94% 45%));
    --gradient-soft: linear-gradient(180deg, hsl(215 25% 8%), hsl(215 25% 12%));

    --shadow-card: 0 8px 30px -8px hsl(0 0% 0% / 0.3);
    --shadow-soft: 0 4px 20px -4px hsl(213 94% 68% / 0.2);
    --shadow-button: 0 4px 15px -2px hsl(213 94% 68% / 0.4);
  }
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(var(--foreground));
  background-color: hsl(var(--background));
  overflow-x: hidden;
}

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

@keyframes bounce-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

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

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

/* Typography */
.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-secondary {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero {
  background: var(--gradient-hero);
  color: white;
  font-size: var(--font-size-lg);
  padding: 1rem 2.5rem;
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: var(--shadow-card);
}

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

.btn-hero .arrow {
  transition: transform 0.3s ease;
}

.btn-hero:hover .arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: hsl(var(--background) / 0.8);
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--border));
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: hsl(var(--muted));
  transform: translateY(-1px);
}

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

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

.floating-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.floating-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background-color: hsl(var(--primary-soft));
  animation: float 6s ease-in-out infinite;
}

.floating-2 {
  bottom: 8rem;
  right: 4rem;
  width: 6rem;
  height: 6rem;
  background-color: hsl(var(--secondary-soft));
  animation: bounce-soft 4s ease-in-out infinite;
}

.floating-3 {
  top: 33%;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--accent-soft));
  animation: float 6s ease-in-out infinite 2s;
}

/* Hero Content Center Layout */
.hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
  animation: slide-up 0.8s ease-out;
}

/* Hero Form Embedded Styles */
.hero-form-wrapper {
  margin: 3rem 0 2rem 0;
}

.hero-form-card {
  background: hsl(var(--card) / 0.95);
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 2);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.hero-form-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  text-align: center;
}

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

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

.voice-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-size-base);
  font-weight: 500;
}

.voice-btn-hero:hover {
  background: hsl(var(--primary) / 0.1);
  border-color: hsl(var(--primary));
  transform: translateY(-1px);
}

.upload-wrapper-hero {
  position: relative;
}

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

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

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

.form-input-hero {
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: var(--font-size-base);
  transition: border-color 0.3s ease;
}

.form-input-hero:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

.btn-hero-submit {
  background: var(--gradient-hero);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.btn-hero-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

/* Practice Text Section Styles */
.practice-text-section {
  background: hsl(var(--primary-soft) / 0.3);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.practice-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.practice-text p {
  font-size: var(--font-size-sm);
  color: hsl(var(--foreground));
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.practice-text p:last-child {
  margin-bottom: 0;
}

.practice-text strong {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Form Textarea Styles */
.form-textarea-hero {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: var(--font-size-base);
  font-family: inherit;
  resize: vertical;
  min-height: 5rem;
  transition: border-color 0.3s ease;
}

.form-textarea-hero:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

.brand-name {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: var(--font-size-6xl);
  }
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 50rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: var(--font-size-2xl);
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

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

.play-icon {
  font-size: 1.2em;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
  padding-top: 1rem;
  flex-wrap: wrap;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.trust-dot-1 {
  background-color: hsl(var(--secondary));
}
.trust-dot-2 {
  background-color: hsl(var(--primary));
}
.trust-dot-3 {
  background-color: hsl(var(--accent));
}

.hero-form {
  position: relative;
  animation: slide-up 0.8s ease-out 0.3s both;
}

.hero-form-card {
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  max-width: 500px;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-form-card {
    max-width: none;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce-soft 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid hsl(var(--muted-foreground));
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background: hsl(var(--muted-foreground));
  border-radius: 0.125rem;
  animation: pulse 2s ease-in-out infinite;
}

/* Section styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: slide-up 0.8s ease-out;
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: var(--font-size-5xl);
  }
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.about-bg-1,
.about-bg-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(3rem);
}

.about-bg-1 {
  top: 0;
  left: 0;
  width: 18rem;
  height: 18rem;
  background: hsl(var(--primary-soft));
}

.about-bg-2 {
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: hsl(var(--secondary-soft));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

.about-image {
  position: relative;
  animation: slide-up 0.8s ease-out 0.2s both;
}

.speech-icons {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(var(--primary) / 0.1), transparent);
  border-radius: 1rem;
}

.about-text {
  animation: slide-up 0.8s ease-out 0.4s both;
}

.about-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-title {
    font-size: var(--font-size-3xl);
  }
}

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

.focus-areas {
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-soft);
}

.focus-title {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.75rem;
}

.focus-list {
  list-style: none;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
}

.focus-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.focus-dot-1 {
  background: hsl(var(--primary));
}
.focus-dot-2 {
  background: hsl(var(--secondary));
}
.focus-dot-3 {
  background: hsl(var(--accent));
}
.focus-dot-4 {
  background: hsl(var(--primary));
}

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

@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 {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
  animation: slide-up 0.8s ease-out both;
}

.feature-card:nth-child(1) {
  animation-delay: 0.6s;
}
.feature-card:nth-child(2) {
  animation-delay: 0.7s;
}
.feature-card:nth-child(3) {
  animation-delay: 0.8s;
}
.feature-card:nth-child(4) {
  animation-delay: 0.9s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
}

.feature-icon-1 {
  background: var(--gradient-hero);
}
.feature-icon-2 {
  background: var(--gradient-accent);
}
.feature-icon-3 {
  background: var(--gradient-hero);
}
.feature-icon-4 {
  background: var(--gradient-accent);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-description {
  color: hsl(var(--muted-foreground));
}

/* Form Section */
.form-section {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.3);
  position: relative;
  overflow: hidden;
}

.form-bg-1,
.form-bg-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.form-bg-1 {
  top: 5rem;
  right: 2.5rem;
  width: 10rem;
  height: 10rem;
  background: hsl(var(--accent-soft));
  animation: float 6s ease-in-out infinite;
}

.form-bg-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: hsl(var(--primary-soft));
  animation: bounce-soft 4s ease-in-out infinite;
}

.form-card {
  max-width: 64rem;
  margin: 0 auto;
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 2px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  animation: slide-up 0.8s ease-out 0.3s both;
}

.form-header {
  text-align: center;
  padding: 2rem 2rem 0;
}

.form-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .form-title {
    font-size: var(--font-size-3xl);
  }
}

.form-subtitle {
  font-size: var(--font-size-lg);
  color: hsl(var(--muted-foreground));
}

.voice-form {
  padding: 2rem;
}

.voice-section {
  margin-bottom: 2rem;
}

.form-label {
  font-size: var(--font-size-lg);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.form-helper {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.voice-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .voice-buttons {
    grid-template-columns: 1fr 1fr;
  }
}

.voice-btn {
  height: 5rem;
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--background));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voice-btn:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--primary-soft));
}

.voice-btn.recording {
  border-color: #ef4444;
  background: #fef2f2;
}

.voice-btn.recorded {
  border-color: #10b981;
  background: #f0fdf4;
}

.upload-wrapper {
  position: relative;
}

.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.voice-icon {
  font-size: 1.5rem;
}

.voice-text {
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: var(--font-size-base);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.required {
  color: #ef4444;
}

.trust-notice {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--primary-soft));
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.notice-icon {
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.notice-title {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
}

.notice-text {
  font-size: var(--font-size-sm);
  color: hsl(var(--primary) / 0.8);
}

.btn-submit {
  width: 100%;
}

@media (min-width: 768px) {
  .btn-submit {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* Trust Section */
.trust-section {
  padding: 5rem 0;
  background: hsl(var(--muted) / 0.2);
  position: relative;
  overflow: hidden;
}

.trust-bg-1,
.trust-bg-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(3rem);
}

.trust-bg-1 {
  top: 2.5rem;
  left: 2.5rem;
  width: 12rem;
  height: 12rem;
  background: hsl(var(--primary-soft));
}

.trust-bg-2 {
  bottom: 2.5rem;
  right: 2.5rem;
  width: 14rem;
  height: 14rem;
  background: hsl(var(--secondary-soft));
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .trust-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.trust-card {
  padding: 2rem;
  background: hsl(var(--card));
  border-radius: 1rem;
  border: 2px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
  animation: slide-up 0.8s ease-out both;
}

.trust-card:nth-child(1) {
  animation-delay: 0.2s;
}
.trust-card:nth-child(2) {
  animation-delay: 0.4s;
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.trust-icon-1 {
  background: var(--gradient-hero);
}
.trust-icon-2 {
  background: var(--gradient-accent);
}

.trust-card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.trust-card-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.status-list {
  font-size: var(--font-size-sm);
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.status-green {
  background: #10b981;
}
.status-yellow {
  background: #f59e0b;
}
.status-blue {
  background: #3b82f6;
}

.benefits-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.benefit-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.privacy-card {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--primary-soft) / 0.1));
  border-radius: 1rem;
  border: 2px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-bottom: 3rem;
  animation: slide-up 0.8s ease-out 0.6s both;
}

.privacy-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.privacy-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.privacy-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

@media (min-width: 768px) {
  .privacy-title {
    font-size: var(--font-size-3xl);
  }
}

.privacy-text {
  font-size: var(--font-size-lg);
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 auto 2rem;
}

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

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

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

.security-title {
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
}

.security-text {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
}

.privacy-btn {
  /* background: white; */
  border-color: hsl(var(--border));
}

.privacy-btn:hover {
  background: hsl(var(--muted) / 0.5);
}

.trust-cta {
  text-align: center;
  animation: slide-up 0.8s ease-out 0.8s both;
}

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

.cta-text {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

/* Share Section */
.share-section {
  padding: 5rem 0;
  background: hsl(var(--background));
  position: relative;
  overflow: hidden;
}

.share-bg-1,
.share-bg-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(3rem);
}

.share-bg-1 {
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background: hsl(var(--secondary-soft));
}

.share-bg-2 {
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: hsl(var(--accent-soft));
}

.share-card {
  max-width: 64rem;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(var(--card)), hsl(var(--muted) / 0.2));
  border-radius: 1rem;
  border: 2px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
  animation: slide-up 0.8s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .share-card {
    padding: 3rem;
  }
}

.share-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.share-heart {
  font-size: 2rem;
  color: hsl(var(--accent));
}

.share-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

@media (min-width: 768px) {
  .share-title {
    font-size: var(--font-size-3xl);
  }
}

.share-text {
  font-size: var(--font-size-lg);
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  margin: 0 auto 2rem;
  text-align: center;
}

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

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

.share-btn {
  height: 4rem;
  border: none;
  border-radius: var(--radius);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  animation: slide-up 0.8s ease-out both;
}

.share-btn:nth-child(1) {
  animation-delay: 0.5s;
}
.share-btn:nth-child(2) {
  animation-delay: 0.6s;
}
.share-btn:nth-child(3) {
  animation-delay: 0.7s;
}
.share-btn:nth-child(4) {
  animation-delay: 0.8s;
}

.share-btn:hover {
  transform: scale(1.05);
}

.whatsapp-btn {
  background: #10b981;
}

.whatsapp-btn:hover {
  background: #059669;
}

.twitter-btn {
  background: #0ea5e9;
}

.twitter-btn:hover {
  background: #0284c7;
}

.facebook-btn {
  background: #2563eb;
}

.facebook-btn:hover {
  background: #1d4ed8;
}

.instagram-btn {
  background: #ec4899;
}

.instagram-btn:hover {
  background: #db2777;
}

.share-icon {
  font-size: 1.5rem;
}

.copy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: hsl(var(--muted));
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

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

.copy-icon {
  color: hsl(var(--muted-foreground));
}

.copy-text {
  font-size: var(--font-size-sm);
  color: hsl(var(--muted-foreground));
}

.copy-btn {
  background: white;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.copy-btn:hover {
  background: hsl(var(--muted) / 0.5);
}

.share-tip {
  padding: 1.5rem;
  background: hsl(var(--primary-soft));
  border-radius: var(--radius);
}

.tip-text {
  color: hsl(var(--primary));
  font-weight: 500;
}

.share-cta {
  text-align: center;
  margin-top: 3rem;
  animation: slide-up 0.8s ease-out 0.6s both;
}

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

  .floating-1,
  .floating-2,
  .floating-3 {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .about-section,
  .form-section,
  .trust-section,
  .share-section {
    padding: 3rem 0;
  }
}

/* Animation utilities */
.animate-slide-up {
  animation: slide-up 0.8s ease-out both;
}

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

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

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