/* ============================================
   OktoOS Website Styles
   Inspired by Apple macOS website design
   ============================================ */

:root {
  --primary-color: #FFD700;
  --primary-dark: #FFA500;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --bg-dark: #0d0d0d;
  --bg-darker: #000000;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --border-dark: #30363d;
  --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --gradient-text: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

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

/* ============================================
   Navigation
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo {
  height: 32px;
  width: auto;
}

.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 20px;
  font-size: 14px;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--text-primary);
  background: rgba(0, 0, 0, 0.05);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

/* ============================================
   Hero Section - Apple/macOS Inspired
   ============================================ */

.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f7 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
.hero-background-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(255, 165, 0, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 60% 40% at 20% 60%, rgba(255, 200, 50, 0.08) 0%, transparent 40%);
  animation: heroGradientPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroGradientPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 20px;
}

/* Eyebrow text - Apple style */
.hero-eyebrow {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -4px;
  color: var(--text-primary);
  text-align: center;
}

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

.hero-tagline {
  font-size: 32px;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: center;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* Apple-style Display Mockup */
.hero-display {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.display-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: perspective(1500px) rotateX(8deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.display-wrapper:hover {
  transform: perspective(1500px) rotateX(3deg) scale(1.02);
}

/* Monitor Frame - Computer Style */
.display-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid #333;
  border-radius: 16px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Inner bezel effect */
.display-frame::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid #222;
  border-radius: 10px;
  pointer-events: none;
}

.display-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-dark);
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid #111;
}

/* Monitor Stand */
.display-stand {
  width: 80px;
  height: 60px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border-left: 3px solid #333;
  border-right: 3px solid #333;
  margin-top: -2px;
}

.display-base {
  width: 200px;
  height: 12px;
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid #333;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.display-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  background: #0d0d0d;
}

.display-wrapper:hover .display-image {
  transform: scale(1.02);
}

/* GIF support */
.display-image[src$=".gif"],
.display-image[src$=".GIF"] {
  animation: none;
}

.display-caption {
  margin-top: 30px;
  font-size: 15px;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: -0.2px;
}

/* Responsive Hero */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 72px;
  }

  .display-frame {
    max-width: 750px;
  }
}

@media (max-width: 968px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 56px;
    letter-spacing: -2px;
  }

  .hero-tagline {
    font-size: 24px;
  }

  .hero-description {
    font-size: 18px;
  }

  .notebook-base-container {
    max-width: 550px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-tagline {
    font-size: 20px;
  }

  .display-wrapper {
    transform: perspective(1500px) rotateX(5deg);
  }

  .notebook-base-container {
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 30px;
  }
}

/* ============================================
   Features Carousel Section
   ============================================ */

.features-carousel {
  padding: 120px 0;
  background: var(--bg-white);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -2px;
  color: var(--text-primary);
  line-height: 1.1;
}

.section-description {
  font-size: 21px;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  letter-spacing: -0.3px;
}

.carousel-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg-light);
  min-height: 600px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  width: 100%;
  background: #f5f5f7;
  border-radius: 28px;
  min-height: 600px;
}

.slide-visual {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  transition: opacity 0.6s ease;
}

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

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

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

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

.carousel-slide.active .slide-background {
  opacity: 0.5;
}

.slide-interface {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
}

.feature-gif {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slide-text {
  padding: 0;
  order: -1; /* Text on left */
}

.slide-text h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1d1d1f;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.slide-text p {
  font-size: 18px;
  color: #86868b;
  line-height: 1.6;
  letter-spacing: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: #000;
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.dot:hover {
  background: var(--text-secondary);
}

.dot.active:hover {
  background: var(--primary-dark);
}

/* ============================================
   Apps Section
   ============================================ */

.apps-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.app-item {
  text-align: center;
  padding: 40px 24px;
  border-radius: 16px;
  transition: all 0.3s;
  background: var(--bg-white);
  border: 1px solid transparent;
}

.app-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-color);
}

.app-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  object-fit: contain;
  transition: transform 0.3s;
}

.app-item:hover .app-icon {
  transform: scale(1.1);
}

.app-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.app-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Featured apps - highlighted with gradient border */
.app-item.featured {
  background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.app-item.featured:hover {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.apps-more {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   Agent Section
   ============================================ */

.agent-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.agent-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.agent-content h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1.1;
}

.agent-content .section-description {
  margin-bottom: 50px;
  text-align: left;
}

.agent-features {
  margin-top: 50px;
}

.agent-feature-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.check-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.agent-feature-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.agent-feature-item p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.agent-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agent-demo-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* ============================================
   Privacy Section
   ============================================ */

.privacy-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.privacy-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.privacy-item {
  text-align: center;
  padding: 40px 24px;
}

.privacy-icon {
  font-size: 56px;
  margin-bottom: 24px;
  filter: grayscale(0.2);
}

.privacy-item h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.privacy-item p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   Download Section
   ============================================ */

.download-section {
  padding: 120px 0;
  background: var(--bg-white);
  text-align: center;
}

.download-options {
  max-width: 900px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
}

.download-card {
  background: var(--bg-light);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.download-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.download-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.download-info h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.download-info ul {
  list-style: none;
  padding: 0;
}

.download-info li {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.download-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 80px 0 40px;
}

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

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

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

.footer-column h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--text-primary);
}

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

.footer-bottom p {
  margin-bottom: 6px;
}

/* ============================================
   Modal
   ============================================ */

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.modal-content {
  background: var(--bg-white);
  margin: 5% auto;
  padding: 50px;
  border-radius: 24px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
  color: var(--text-secondary);
  float: right;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  position: absolute;
  top: 24px;
  right: 24px;
}

.close:hover {
  color: var(--text-primary);
}

.modal-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.modal-content > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 17px;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  margin-top: 28px;
  padding: 18px;
  border-radius: 10px;
  display: none;
  font-size: 15px;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
  display: block;
}

/* ============================================
   Responsive - General
   ============================================ */

@media (max-width: 968px) {
  .agent-layout,
  .slide-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    min-height: auto;
  }

  .slide-text {
    order: 0;
    text-align: center;
  }

  .slide-text h3 {
    font-size: 32px;
  }

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

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

  .download-options {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .section-title {
    font-size: 40px;
  }

  .slide-text h3 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-container,
  .hero-container,
  .carousel-container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 32px;
  }

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

  .nav-links {
    display: none;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .slide-content {
    padding: 30px 20px;
  }

  .slide-text h3 {
    font-size: 26px;
  }
}

/* ============================================
   Hero Trust Bullets
   ============================================ */

.hero-trust-bullets {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-secondary);
}

.trust-icon {
  color: #22c55e;
  font-weight: bold;
}

.hero-trust-line {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
}

/* ============================================
   Demo Section
   ============================================ */

.demo-section {
  padding: 120px 0;
  background: var(--bg-light);
}

.demo-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.demo-step {
  text-align: center;
  padding: 24px;
  background: var(--bg-white);
  border-radius: 16px;
  max-width: 200px;
  box-shadow: var(--shadow-sm);
}

.demo-step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: 700;
  color: #000;
}

.demo-step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.demo-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.demo-arrow {
  font-size: 24px;
  color: var(--text-light);
}

/* Demo Command Box */
.demo-command-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  padding: 32px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #333;
}

.command-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.command-text {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
}

/* Demo Subtasks Visual */
.demo-subtasks {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 32px;
  margin: 40px auto;
  max-width: 700px;
  box-shadow: var(--shadow-md);
  border: 2px solid #22c55e;
}

.demo-subtasks h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.subtask-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.subtask-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f8fdf8;
  border-radius: 8px;
  border-left: 3px solid #22c55e;
}

.subtask-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.subtask-icon.done {
  background: #22c55e;
  color: white;
}

.subtask-icon.running {
  background: #3B82F6;
  color: white;
  animation: pulse 1.5s infinite;
}

.subtask-icon.pending {
  background: #e5e5e5;
  color: #999;
}

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

.subtask-text {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.demo-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.demo-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.demo-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.badge-free {
  background: #22c55e;
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

.demo-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.demo-example {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 968px) {
  .demo-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-flow {
    flex-direction: column;
  }

  .demo-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .demo-cards {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Why Section
   ============================================ */

.why-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.why-item {
  text-align: center;
  padding: 24px;
}

.why-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.why-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.why-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 968px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Agent Builder Section (Star Feature)
   ============================================ */

.agent-builder-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fefce8 0%, #fef9c3 50%, #fef08a 100%);
}

.agent-builder-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 24px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.agent-builder-highlights {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.highlight-icon {
  color: #22c55e;
  font-weight: bold;
  font-size: 18px;
}

.agent-builder-visual {
  max-width: 900px;
  margin: 40px auto;
}

.agent-builder-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.templates-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin: 60px 0 32px;
  color: var(--text-primary);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.template-card {
  background: var(--bg-white);
  padding: 24px 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.template-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.template-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.template-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.template-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.agent-builder-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 1200px) {
  .templates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

  .agent-builder-highlights {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ============================================
   Local AI Section
   ============================================ */

.local-ai-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.local-ai-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.local-ai-item {
  text-align: center;
  padding: 32px;
}

.local-ai-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.local-ai-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.local-ai-item p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.local-ai-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

@media (max-width: 968px) {
  .local-ai-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   App Badge
   ============================================ */

.app-badge {
  background: #22c55e;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: middle;
}

/* ============================================
   Pricing Preview Section
   ============================================ */

.pricing-preview-section {
  padding: 120px 0;
  background: var(--bg-light);
}

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

.pricing-preview-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.pricing-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-preview-card.free {
  border: 2px solid #22c55e;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-secondary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
}

.pricing-preview-card.free .pricing-badge {
  background: #22c55e;
}

.pricing-preview-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.pricing-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-preview-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.pricing-preview-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-preview-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
}

.pricing-note a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s;
}

.pricing-note a:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

@media (max-width: 968px) {
  .pricing-preview-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================
   FAQ Section
   ============================================ */

.faq-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  padding: 24px;
  background: var(--bg-light);
  border-radius: 16px;
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Final CTA Section
   ============================================ */

.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f7 100%);
  text-align: center;
}

.final-cta-buttons {
  margin: 40px 0;
}

.final-cta-requirements {
  max-width: 400px;
  margin: 60px auto 0;
  text-align: left;
  padding: 32px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.final-cta-requirements h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.final-cta-requirements ul {
  list-style: none;
  padding: 0;
}

.final-cta-requirements li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.final-cta-requirements li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ============================================
   Pricing Page Styles
   ============================================ */

.pricing-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  text-align: center;
}

.pricing-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.pricing-hero-subtitle {
  font-size: 21px;
  color: var(--text-secondary);
}

.pricing-cards-section {
  padding: 80px 0 120px;
  background: var(--bg-white);
}

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

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}

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

.pricing-card.popular {
  border: 2px solid var(--primary-color);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.pricing-card-header {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plan-badge.current {
  background: #22c55e;
  color: white;
}

.plan-badge.coming {
  background: var(--text-light);
  color: white;
}

.plan-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

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

.price-amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
}

.price-period {
  font-size: 16px;
  color: var(--text-secondary);
}

.plan-best-for {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.plan-features li.included .feature-icon {
  color: #22c55e;
  font-weight: bold;
}

.plan-features li.highlight {
  font-weight: 600;
  color: var(--text-primary);
}

.plan-features li.premium .feature-icon {
  color: var(--primary-color);
}

.plan-limitations {
  background: var(--bg-light);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.plan-limitations h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.plan-limitations ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-limitations li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}

.plan-limitations li::before {
  content: '–';
  position: absolute;
  left: 0;
}

.plan-cta {
  width: 100%;
}

.pricing-notes {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-notes p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0;
}

@media (max-width: 968px) {
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-hero-title {
    font-size: 40px;
  }
}

/* ============================================
   Comparison Table
   ============================================ */

.comparison-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 48px;
}

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

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

.comparison-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-primary);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table tr.category td {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.comparison-table td {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   Pricing CTA Section
   ============================================ */

.pricing-cta-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fefce8 0%, #fef9c3 100%);
  text-align: center;
}

.pricing-faq {
  background: var(--bg-white);
}

/* ============================================
   Modal Small Variant
   ============================================ */

.modal-small {
  max-width: 400px;
  text-align: center;
}

.modal-small p {
  margin-bottom: 24px;
}

/* ============================================
   Nav Active State
   ============================================ */

.nav-links a.active {
  color: var(--text-primary);
  font-weight: 500;
}

.nav-links a.active::after {
  width: 100%;
}

/* ============================================
   Language Switcher
   ============================================ */

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switcher {
  position: relative;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}

.lang-btn:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.lang-arrow {
  font-size: 10px;
}

.lang-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  min-width: 120px;
  display: none;
  z-index: 1001;
}

.lang-menu.show {
  display: block;
}

.lang-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
}

.lang-menu a:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.lang-menu a.active {
  color: var(--primary-color);
  font-weight: 500;
}

.lang-menu a:first-child {
  border-radius: 7px 7px 0 0;
}

.lang-menu a:last-child {
  border-radius: 0 0 7px 7px;
}

/* ============================================
   Pricing Explainer Section
   ============================================ */

.pricing-explainer {
  padding: 60px 0;
  background: var(--bg-light);
}

.explainer-box {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.explainer-box h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--text-primary);
}

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

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

.explainer-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.explainer-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.explainer-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============================================
   Plan Note & Highlight Boxes
   ============================================ */

.plan-note {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.plan-note h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 8px;
}

.plan-note p {
  font-size: 13px;
  color: #1e3a8a;
  line-height: 1.6;
}

.plan-highlight {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 24px;
}

.plan-highlight p {
  font-size: 14px;
  color: #92400e;
  line-height: 1.6;
  margin: 0;
}

.plan-cta-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 12px;
}

/* ============================================
   Popular Badge
   ============================================ */

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* ============================================
   Simple Pricing Compare Table
   ============================================ */

.pricing-simple-compare {
  max-width: 700px;
  margin: 60px auto 0;
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-simple-compare table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-simple-compare th,
.pricing-simple-compare td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-simple-compare th {
  background: var(--bg-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-simple-compare td {
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-simple-compare tbody tr:last-child td {
  border-bottom: none;
}

.pricing-simple-compare tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   Pro Card Styling
   ============================================ */

.pricing-card.pro {
  border: 1px solid var(--border-color);
}

.pricing-card.pro:hover {
  border-color: var(--primary-color);
}

.pricing-preview-card.pro {
  background: linear-gradient(145deg, #ffffff 0%, #fefce8 100%);
}

/* ============================================
   Responsive Nav Right
   ============================================ */

@media (max-width: 968px) {
  .nav-right {
    gap: 12px;
  }

  .language-switcher {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-right .nav-cta {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/* ============================================
   Pre-Launch Banner
   ============================================ */

.prelaunch-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-bottom: 1px solid #f59e0b;
  padding: 12px 0;
  margin-top: 57px;
  text-align: center;
}

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

.prelaunch-icon {
  font-size: 18px;
}

.prelaunch-text {
  font-size: 14px;
  color: #92400e;
}

.prelaunch-text strong {
  color: #78350f;
}

/* ============================================
   Legal Pages (About, Privacy, Terms, Security)
   ============================================ */

.legal-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  text-align: center;
  margin-top: 0;
}

.legal-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.legal-hero p {
  font-size: 18px;
  color: var(--text-secondary);
}

.legal-content {
  padding: 60px 0 100px;
  background: var(--bg-white);
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-text ul, .legal-text ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-text li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-text a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-text a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.info-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}

.info-box h4 {
  font-size: 16px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 8px;
}

.info-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #78350f;
  margin-bottom: 0;
}

.info-box p + p {
  margin-top: 12px;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 80px 0 40px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-content {
    padding: 40px 0 60px;
  }

  .legal-text h2 {
    font-size: 24px;
  }

  .prelaunch-banner {
    margin-top: 56px;
    padding: 10px 0;
  }

  .prelaunch-text {
    font-size: 13px;
  }
}
