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

/* Beta Banner */
.beta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 12px 0;
  text-align: center;
}

.beta-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.beta-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.beta-text {
  font-size: 0.95rem;
}

.beta-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
}

.beta-cta:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.badge.beta-live {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(74, 144, 164, 0.15));
  color: var(--success);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

:root {
  --primary: #4A90A4;
  --primary-dark: #3A7A8F;
  --primary-light: #6BA8B8;
  --secondary: #8B5CF6;
  --accent: #F59E0B;
  --success: #22C55E;
  --danger: #EF4444;
  --dark: #1a1a2e;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

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

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-900);
}

.btn-secondary:hover {
  background: var(--gray-200);
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-block { width: 100%; }

/* Navigation */
.navbar {
  position: fixed;
  top: 48px; /* Account for beta banner */
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

/* Beta banner fixed at very top */
.beta-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 180px 0 100px; /* Extra padding for beta banner + navbar */
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  margin: 0 auto;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
}

/* Phone frame for real screenshots */
.phone-frame {
  width: 300px;
  margin: 0 auto;
  background: var(--gray-900);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
}

.phone-frame-small {
  width: 200px;
  border-radius: 28px;
  padding: 8px;
}

.phone-screenshot {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

.phone-frame-small .phone-screenshot {
  border-radius: 20px;
}

/* Feature card with screenshot */
.feature-card-with-image {
  display: flex;
  flex-direction: column;
}

.feature-screenshot {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gray-50);
  border-radius: 32px;
  overflow: hidden;
  padding: 20px 16px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.app-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-stat {
  flex: 1;
  background: var(--white);
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.mini-stat i {
  margin-right: 4px;
  color: var(--primary);
}

.app-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--gray-400);
  box-shadow: var(--shadow-sm);
}

.app-search span {
  flex: 1;
}

.app-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.item-thumb.blue { background: var(--primary); }
.item-thumb.green { background: var(--success); }
.item-thumb.purple { background: var(--secondary); }

.item-info {
  flex: 1;
}

.item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-900);
}

.item-loc {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.item-qty {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  font-size: 0.875rem;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary);
}

.card-1 {
  top: 80px;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  left: -40px;
  animation-delay: 0.5s;
}

.card-3 {
  bottom: 100px;
  right: -10px;
  animation-delay: 1s;
}

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

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 0 0 0 200px;
  z-index: 1;
}

/* Section Styles */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: var(--gray-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

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

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

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

.step-content p {
  color: var(--gray-600);
}

.step-image {
  display: flex;
  justify-content: center;
}

.step-mockup {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-600);
  font-weight: 500;
}

.step-mockup i {
  font-size: 2rem;
  color: var(--primary);
}

.grid-mockup {
  display: grid;
  grid-template-columns: repeat(3, 40px);
  gap: 8px;
  padding: 24px;
}

.grid-cell {
  height: 40px;
  border-radius: 8px;
}

.c1 { background: var(--primary); }
.c2 { background: var(--secondary); }
.c3 { background: var(--success); }
.c4 { background: var(--accent); grid-column: span 2; }
.c5 { background: var(--danger); }
.c6 { background: var(--primary-light); }

.item-mockup {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.mock-item-photo {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 12px;
}

.mock-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-line {
  height: 12px;
  background: var(--gray-300);
  border-radius: 6px;
}

.mock-line.w80 { width: 120px; }
.mock-line.w60 { width: 80px; }

.mock-qty {
  font-weight: 600;
  color: var(--gray-700);
}

/* Story Section */
.story {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content h2 {
  margin-bottom: 40px;
}

.story-text {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.8;
}

.story-text p {
  color: var(--gray-700);
  margin-bottom: 24px;
}

.story-text em {
  color: var(--primary);
  font-style: italic;
}

.story-conclusion {
  background: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
  margin-top: 32px;
}

.story-conclusion strong {
  color: var(--gray-900);
}

/* Use Cases Section */
.use-cases {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

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

.use-case-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
}

.use-case-card h3 {
  margin-bottom: 12px;
  color: var(--gray-900);
}

.use-case-card > p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.use-case-features {
  list-style: none;
  padding: 0;
}

.use-case-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 0.875rem;
  padding: 6px 0;
}

.use-case-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--success);
  font-size: 0.75rem;
}

/* Pricing */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.2s;
}

.toggle-label.active {
  color: var(--gray-900);
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: 0.3s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gradient);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

.save-badge {
  background: var(--success);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Price note for annual equivalent */
.price-note {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 4px;
  text-align: center;
}

/* Feature trial styling */
.feature-trial {
  color: var(--primary) !important;
}

.feature-trial i {
  color: var(--primary) !important;
}

.trial-badge {
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.15), rgba(139, 92, 246, 0.15));
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
}

/* AI Trial Info Box */
.ai-trial-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 700px;
  margin: 48px auto 0;
}

.ai-trial-info > i {
  font-size: 2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.trial-text strong {
  display: block;
  color: var(--gray-900);
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.trial-text p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

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

.pricing-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.pricing-header h3 {
  color: var(--gray-600);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

.price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-900);
}

.price .period {
  color: var(--gray-500);
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--success);
}

/* Security & Privacy Section */
.security {
  padding: 100px 0;
  background: var(--white);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.security-card {
  background: var(--gray-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
  text-align: center;
}

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

.security-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 20px;
}

.security-card h3 {
  margin-bottom: 12px;
  color: var(--gray-900);
}

.security-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* Comparison Section */
.comparison {
  padding: 100px 0;
  background: var(--gray-50);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.comparison-table th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.comparison-table th.highlight {
  background: var(--primary);
  color: var(--white);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-900);
}

.comparison-table td.highlight {
  background: rgba(74, 144, 164, 0.05);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--gray-50);
}

.comparison-table tbody tr:hover td.highlight {
  background: rgba(74, 144, 164, 0.1);
}

.comparison-table i.yes {
  color: var(--success);
  font-size: 1.25rem;
}

.comparison-table i.no {
  color: var(--gray-400);
  font-size: 1.25rem;
}

.comparison-table i.partial {
  color: var(--accent);
  font-size: 1.25rem;
}

.comparison-legend {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.comparison-legend span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-legend i.yes {
  color: var(--success);
}

.comparison-legend i.no {
  color: var(--gray-400);
}

.comparison-legend i.partial {
  color: var(--accent);
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--accent);
}

.testimonial-card p {
  color: var(--gray-700);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info strong {
  color: var(--gray-900);
}

.author-info span {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

.beta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--gray-900);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.store-btn:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.store-btn.testflight-btn {
  background: var(--white);
  color: var(--gray-900);
  padding: 18px 36px;
}

.store-btn.testflight-btn:hover {
  background: var(--gray-100);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.store-btn i {
  font-size: 2rem;
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-text span {
  font-size: 0.75rem;
  opacity: 0.8;
}

.store-text strong {
  font-size: 1.125rem;
}

/* Beta Perks */
.beta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
}

.perk i {
  color: var(--success);
}

/* Android Notify Section */
.notify-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.notify-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.notify-icon {
  font-size: 3rem;
  color: #3DDC84; /* Android green */
  margin-bottom: 20px;
}

.notify-content h3 {
  color: var(--gray-900);
  margin-bottom: 12px;
}

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

.notify-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.notify-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

.notify-form .btn {
  white-space: nowrap;
}

.notify-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-form input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 1px solid var(--success);
  border-radius: var(--radius);
  color: var(--success);
  font-weight: 500;
}

.notify-success i {
  font-size: 1.25rem;
}

.notify-error {
  margin-top: 12px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--danger);
  border-radius: var(--radius);
  color: var(--danger);
  font-size: 0.875rem;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--gray-800);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.2s;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: var(--gray-400);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 1;
  }

  .hero-subtitle {
    margin: 0 auto 32px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: 2;
    margin-top: 40px;
  }

  .floating-card {
    display: none;
  }

  .step {
    grid-template-columns: 60px 1fr;
  }

  .step-image {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .beta-banner .container {
    flex-direction: column;
    gap: 12px;
  }

  .beta-text {
    font-size: 0.875rem;
  }

  .navbar {
    top: 80px; /* Taller banner on mobile */
  }

  .hero {
    padding-top: 200px;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    top: 152px; /* Account for banner + navbar */
  }

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

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

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

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .store-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .beta-perks {
    flex-direction: column;
    gap: 16px;
  }

  .comparison-legend {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .phone-frame {
    width: 260px;
    border-radius: 32px;
    padding: 10px;
  }

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

  .phone-frame-small {
    width: 180px;
    border-radius: 24px;
    padding: 6px;
  }

  .phone-frame-small .phone-screenshot {
    border-radius: 18px;
  }
}
