/* Voxa Tasks Landing Page Styles */
/* Based on TextLater landing page design */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* Variables - Voxa brand colors (purple/violet gradient) */
:root {
  --primary: #8b5cf6;
  --primary-light: #a78bfa;
  --primary-dark: #7c3aed;
  --secondary: #06b6d4;
  --accent: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #8b5cf6 100%);
  --gradient-mixed: linear-gradient(
    135deg,
    #8b5cf6 0%,
    #06b6d4 50%,
    #10b981 100%
  );

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --glass-backdrop: blur(20px);

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --shadow-purple: 0 10px 30px -5px rgb(139 92 246 / 0.3);
}

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

/* Typography */
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 550px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.badge-icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.brand-name {
  display: block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8em;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-purple);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-backdrop);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

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

.btn-primary:hover .btn-shine {
  left: 100%;
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 580px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f5f3ff 0%, #ffffff 100%);
  border-radius: 32px;
  overflow: hidden;
}

.app-demo {
  padding: 16px;
  height: 100%;
}

.demo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-top: 8px;
}

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

.battery-icon {
  width: 20px;
  height: 20px;
}

.demo-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.voice-indicator {
  background: var(--glass-bg);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
}

.voice-waves {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
    height: 30px;
    align-items: center;
}

.wave {
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
    animation: waveAnim 1s ease-in-out infinite;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.1s; }
.wave:nth-child(3) { animation-delay: 0.2s; }
.wave:nth-child(4) { animation-delay: 0.3s; }
.wave:nth-child(5) { animation-delay: 0.4s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

.voice-text {
  font-size: 14px;
  color: var(--gray-700);
  font-style: italic;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.task-checkbox {
  color: var(--gray-400);
  width: 24px;
  height: 24px;
}

.task-details {
  display: flex;
  flex-direction: column;
}

.task-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-800);
}

.task-due {
  font-size: 12px;
  color: var(--primary);
}

.ai-response {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  padding: 12px 16px;
  border-radius: 12px;
}

.response-icon {
  color: #10b981;
  width: 20px;
  height: 20px;
}

.ai-response span {
  font-size: 13px;
  color: #065f46;
  font-weight: 500;
}

.demo-mic-button {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    animation: pulse 2s infinite;
}

.demo-mic-button i {
    color: white;
    width: 24px;
    height: 24px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  opacity: 0.1;
  animation: float 8s ease-in-out infinite;
}

.float-element:nth-child(1) {
  top: 15%;
  left: 10%;
}
.float-element:nth-child(2) {
  top: 60%;
  left: 5%;
}
.float-element:nth-child(3) {
  top: 20%;
  right: 15%;
}
.float-element:nth-child(4) {
  top: 70%;
  right: 10%;
}
.float-element:nth-child(5) {
  top: 40%;
  left: 50%;
}

.float-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gray-400);
  border-bottom: 2px solid var(--gray-400);
  transform: rotate(45deg);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) translateY(10px);
    opacity: 0.5;
  }
}

/* Problem Section */
.problem {
  padding: 100px 0;
  background: white;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.pain-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

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

.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon i {
  color: white;
  width: 24px;
  height: 24px;
}

.pain-card h3 {
  font-size: 18px;
  color: var(--gray-800);
  margin-bottom: 12px;
}

.pain-card p {
  color: var(--gray-600);
  font-size: 15px;
}

.problem-summary {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

.summary-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.summary-content p {
  font-size: 18px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.summary-highlight {
  font-weight: 700;
  color: var(--primary) !important;
  font-size: 20px !important;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

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

.feature-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon i {
  color: white;
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 22px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-examples {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example {
  background: var(--gray-100);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  font-family: monospace;
}

.feature-sub-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sub-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--gray-700);
}

.sub-icon {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.languages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lang {
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
}

.voice-bubbles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voice-bubble {
  background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #065f46;
}

.privacy-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.privacy-badge i {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* AI Comparison */
.ai-comparison {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.ai-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    padding: 12px 16px;
    border-radius: 12px;
}

.ai-option .sub-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.ai-option div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ai-option strong {
    font-size: 14px;
    color: var(--gray-800);
}

.ai-tag-inline {
    font-size: 12px;
    font-weight: 500;
}

.ai-tag-inline.free {
    color: #10b981;
}

.ai-tag-inline.premium {
    color: var(--primary);
}

/* How It Works */
.how-it-works {
  padding: 100px 0;
  background: white;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.step-number {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.step-content h3 {
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
}

.step-visual {
  background: var(--gray-50);
  padding: 24px;
  border-radius: 16px;
}

.mic-button-demo {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2s infinite;
}

.mic-button-demo i {
  color: white;
  width: 28px;
  height: 28px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(139, 92, 246, 0);
  }
}

.speech-demo {
  text-align: center;
}

.speech-waves {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    height: 30px;
    align-items: center;
}

.speech-waves span {
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
    animation: waveAnim 1s ease-in-out infinite;
}

.speech-waves span:nth-child(1) { animation-delay: 0s; }
.speech-waves span:nth-child(2) { animation-delay: 0.1s; }
.speech-waves span:nth-child(3) { animation-delay: 0.2s; }
.speech-waves span:nth-child(4) { animation-delay: 0.3s; }
.speech-waves span:nth-child(5) { animation-delay: 0.4s; }

.speech-demo p {
  font-style: italic;
  color: var(--gray-700);
}

.confirmation-demo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.confirm-icon {
  color: #10b981;
  width: 32px;
  height: 32px;
}

.confirmation-demo p {
  font-style: italic;
  color: #065f46;
  margin: 0;
}

/* AI Options */
.ai-options {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

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

.ai-apple {
  border-color: var(--primary);
}

.ai-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.ai-apple .ai-icon {
  background: var(--gradient-primary);
}

.ai-apple .ai-icon i {
  color: white;
}

.ai-icon i {
  width: 28px;
  height: 28px;
  color: var(--gray-600);
}

.ai-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.ai-description {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 16px;
}

.ai-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.ai-tag.recommended {
  background: var(--gradient-primary);
  color: white;
}

.ai-tag.optional {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: white;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-purple);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 24px;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 24px;
  color: var(--gray-600);
  margin-top: 8px;
}

.amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.price-period {
  color: var(--gray-500);
  font-size: 14px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--gray-700);
  font-size: 15px;
}

.pricing-features i {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* Final CTA */
.final-cta {
  padding: 100px 0;
  background: var(--gradient-primary);
  text-align: center;
}

.final-cta .section-title {
  color: white;
}

.final-cta .gradient-text {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
}

.final-cta-content {
  max-width: 500px;
  margin: 0 auto;
}

.final-cta .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-xl);
}

.final-cta .btn-primary:hover {
  background: var(--gray-100);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.app-store-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 24px 0;
}

.final-trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.final-trust-indicators .trust-item {
  color: rgba(255, 255, 255, 0.9);
}

.final-trust-indicators i {
  color: rgba(255, 255, 255, 0.9);
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-brand h3 a {
  color: white;
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-section h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--gray-400);
}

.footer-section a {
  display: block;
  color: var(--gray-300);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
  font-size: 14px;
}

.footer-bottom i {
  color: #ef4444;
  width: 14px;
  height: 14px;
  vertical-align: middle;
}

/* Theme Preview */
.theme-preview {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.theme-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-shadow: var(--shadow-md);
}

.theme-dot:hover {
    transform: scale(1.2);
}

/* Perfect For Section */
.perfect-for {
    padding: 100px 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

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

.audience-card i {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.audience-card p {
    color: var(--gray-600);
    font-size: 14px;
}

/* Privacy Section */
.privacy-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.privacy-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap;
}

.privacy-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-icon i {
    color: white;
    width: 32px;
    height: 32px;
}

.privacy-content h2 {
    font-size: 24px;
    color: var(--gray-900);
    margin: 0;
}

.privacy-content p {
    color: var(--gray-600);
    margin: 0;
    flex-basis: 100%;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }

  .trust-indicators {
    justify-content: center;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 20px;
  }

  .phone-mockup {
    width: 200px;
    height: 420px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .app-demo {
    padding: 10px;
  }

  .demo-header {
    margin-bottom: 15px;
    padding-top: 4px;
  }

  .demo-time {
    font-size: 12px;
  }

  .demo-content {
    gap: 12px;
  }

  .voice-indicator {
    padding: 12px;
    border-radius: 12px;
  }

  .voice-text {
    font-size: 11px;
  }

  .task-item {
    padding: 10px;
    border-radius: 10px;
    gap: 8px;
  }

  .task-checkbox {
    width: 18px;
    height: 18px;
  }

  .task-title {
    font-size: 12px;
  }

  .task-due {
    font-size: 10px;
  }

  .ai-response {
    padding: 8px 12px;
    border-radius: 10px;
  }

  .ai-response span {
    font-size: 11px;
  }

  .response-icon {
    width: 16px;
    height: 16px;
  }

  .demo-mic-button {
    width: 40px;
    height: 40px;
    margin-top: 12px;
  }

  .demo-mic-button i {
    width: 18px;
    height: 18px;
  }

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

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

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

  .footer-links {
    justify-content: center;
  }

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

  .privacy-content {
    flex-direction: column;
  }
}
