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

:root {
  --primary-color: #1976d2;
  --primary-dark: #0d5ba8;
  --secondary-color: #52aeec;
  --text-dark: #1e1e1e;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --bg-dark: #121212;
  --surface-dark: #1e1e1e;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-white);
  background: var(--bg-dark);
  overflow-x: hidden;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.25rem 2rem;
  box-shadow: 0 2px 10px var(--shadow-dark);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  width: 250px;
  height: 70px;
  overflow: visible;
}

.logo img {
  position: absolute;
  height: 120px;
  width: auto;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
}

/* Language switcher (small control appended to nav) */
#language-switcher {
  display: inline-flex;
  gap: 0.25rem;
  align-items: center;
  margin-left: 0.75rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: none;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.08s ease;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* Focus state for keyboard users (subtle) */
.lang-btn:focus {
  box-shadow: 0 0 0 3px rgba(82, 174, 236, 0.12);
  outline: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

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

.cta-button {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Slightly smaller CTA on desktop to balance header */
@media (min-width: 1025px) {
  .cta-button {
    padding: 0.6rem 1.25rem;
  }
}

.cta-button .cta-icon {
  display: none;
  width: 20px;
  height: 20px;
}

.cta-button .cta-text {
  display: inline;
}

.cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

/* Hero Section */
.hero {
  padding: 120px 2rem 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--text-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

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

.hero-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.hero-button-primary {
  background: var(--text-white);
  color: var(--primary-color);
}

.hero-button-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Hero App Badges */
.hero-app-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 1.5rem;
  flex-wrap: wrap;
}

.hero-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  transition: transform 0.2s ease;
}

.hero-app-badge:hover {
  transform: scale(1.05);
}

.hero-app-badge img {
  display: block;
  border: 0;
}

.hero-app-badge.apple img {
  height: 60px;
  width: auto;
}

.hero-app-badge.google img {
  height: 89px;
  width: auto;
}

/* QR Code Section */
.hero-qr-section {
  margin: 2.5rem 0 0;
  display: flex;
  justify-content: center;
}

.qr-code-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  padding: 0;
  transition: transform 0.3s ease;
}

.qr-code-container:hover {
  transform: scale(1.05);
}

.qr-code {
  display: block;
  width: 160px;
  height: 160px;
  margin: 0;
  padding: 0.75rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
}

.qr-code-container:hover .qr-code {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.qr-text {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  max-width: 200px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.desktop-only {
  display: block;
}

/* Features Section */
.section {
  padding: 80px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

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

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

.feature-card {
  background: transparent;
  perspective: 1000px;
  height: 200px;
  cursor: pointer;
  width: 100%;
  max-width: 350px;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.feature-card.flipped .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--surface-dark);
  box-shadow: 0 4px 20px var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-front {
  transition: border-color 0.3s;
}

.feature-card:hover .feature-card-front {
  border-color: var(--secondary-color);
}

.feature-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-back h4 {
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.75rem 0;
}

.feature-card-back p {
  color: var(--text-white);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.feature-card-front h3 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--text-white);
}

/* How It Works */
.how-it-works {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 80px 2rem;
  margin-bottom: 2rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.step {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.step-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* Use Cases */
.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.use-case {
  background: var(--surface-dark);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 15px var(--shadow-dark);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 1 250px;
}

.use-case:hover {
  transform: scale(1.05);
  border-color: var(--secondary-color);
}

.use-case-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.use-case-icon svg {
  width: 48px;
  height: 48px;
  color: var(--secondary-color);
}

.use-case h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.use-case p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  
  padding: 80px 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  transition: transform 0.2s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.app-badge img {
  display: block;
  border: 0;
}

.app-badge.apple img {
  width: 180px;
  height: 60px;
}

.app-badge.google img {
  width: 202px;
  height: 78px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-white);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: var(--text-white);
  text-align: center;
  padding: 80px 2rem;
}

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

.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.contact-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--surface-dark);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  min-width: 300px;
  color: var(--text-white);
  text-decoration: none;
  cursor: pointer;
}

.contact-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.contact-item span {
  color: var(--text-white);
  transition: color 0.3s;
}

.contact-item:hover span {
  color: var(--secondary-color);
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: white;
  flex-shrink: 0;
}

.contact-discord-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Responsive */
/* Tablet and smaller screens */
@media (max-width: 1024px) {
  .header {
    padding: 0.25rem 1.5rem;
  }

  .logo {
    width: 200px;
  }

  .logo img {
    height: 100px;
    left: 53%;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.6rem 1.75rem;
    font-size: 0.95rem;
  }

  .cta-button .cta-text {
    display: none;
  }

  .cta-button .cta-icon {
    display: block;
  }

  .cta-button {
    padding: 0.6rem;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    justify-content: center;
  }

  .screenshot-slide {
    padding: 0 0.5rem;
  }

  .screenshot-frame {
    width: 240px;
  }

  .carousel-arrow-left {
    left: -15px;
  }

  .carousel-arrow-right {
    right: -15px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .logo {
    width: 180px;
  }

  .logo img {
    height: 90px;
    left: 50%;
  }

  .cta-button {
    padding: 0.5rem;
    width: 40px;
    height: 40px;
  }

  .cta-button .cta-text {
    display: none;
  }

  .cta-button .cta-icon {
    display: block;
    width: 20px;
    height: 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .desktop-only {
    display: none !important;
  }

  .hero-app-badge.apple img {
    height: 50px;
  }

  .hero-app-badge.google img {
    height: 74px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.98);
    flex-direction: column;
    padding: 1rem 2rem;
    gap: 0;
    box-shadow: 0 4px 10px var(--shadow-dark);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

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

  .section {
    padding: 60px 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

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

  .contact-item {
    min-width: auto;
    width: 100%;
  }

  .screenshot-slide {
    width: 100%;
  }

  .screenshot-frame {
    width: 220px;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* App Screenshots Section */
.screenshots-section {
  background: var(--bg-dark);
  padding: 80px 2rem;
  overflow: hidden;
}

.screenshots-section .section-header h2,
.screenshots-section .section-header p {
  color: var(--text-white);
}

/* Use Case Tabs */
.use-case-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.use-case-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 140px;
}

.use-case-tab:hover {
  background: rgba(82, 174, 236, 0.1);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.use-case-tab.active {
  background: linear-gradient(
    135deg,
    rgba(25, 118, 210, 0.3) 0%,
    rgba(82, 174, 236, 0.3) 100%
  );
  border-color: var(--secondary-color);
  box-shadow: 0 4px 20px rgba(82, 174, 236, 0.3);
}

.use-case-tab-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.use-case-tab.active .use-case-tab-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(82, 174, 236, 0.5);
}

.use-case-tab-icon svg {
  width: 22px;
  height: 22px;
  color: white;
}

/* Use Case Content */
.use-case-content {
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-panel {
  display: none;
}

.use-case-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.use-case-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
}

.use-case-description h3 {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.use-case-description p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.screenshots-container {
  overflow: hidden;
  position: relative;
}

.screenshots-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.screenshot-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  width: calc(100% / 3);
}

.screenshot-item {
  flex: 0 0 auto;
  text-align: center;
}

.screenshot-frame {
  width: 280px;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.screenshot-frame:hover {
  transform: scale(1.05);
}

.screenshot-caption {
  color: var(--secondary-color);
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-arrow:hover {
  background: rgba(82, 174, 236, 0.3);
  border-color: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-arrow-left {
  left: -25px;
}

.carousel-arrow-right {
  right: -25px;
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* Screenshot Navigation Dots */
.screenshot-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 1rem 0;
}

.screenshot-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.screenshot-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.screenshot-dot.active {
  background: var(--secondary-color);
  width: 30px;
  border-radius: 5px;
}

/* Mobile adjustments for carousel */
@media (max-width: 1024px) and (min-width: 769px) {
  .screenshot-slide {
    width: 50%;
  }

  .screenshot-frame {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow-left {
    left: 10px;
  }

  .carousel-arrow-right {
    right: 10px;
  }

  .screenshot-frame {
    width: 240px;
  }

  .screenshot-slide {
    width: 100%;
  }

  .use-case-tabs {
    gap: 0.75rem;
  }

  .use-case-tab {
    min-width: 120px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .use-case-tab span {
    font-size: 0.85rem;
  }

  .use-case-tab-icon {
    width: 35px;
    height: 35px;
  }

  .use-case-tab-icon svg {
    width: 20px;
    height: 20px;
  }

  .use-case-description {
    padding: 0 1rem;
  }

  .use-case-description h3 {
    font-size: 1.5rem;
  }

  .use-case-description p {
    font-size: 1rem;
  }
}

/* Accent badges */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.25rem;
}

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

.badge-secondary {
  background: var(--secondary-color);
  color: var(--text-white);
}
