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

/* Font Imports */
@font-face {
  font-family: "OverusedGrotesk-Light";
  font-weight: 300;
  src: url("/assets/fonts/OverusedGrotesk-Light.woff2") format("woff2"),
    url("/assets/fonts/OverusedGrotesk-Light.woff") format("woff"),
    url("/assets/fonts/OverusedGrotesk-Light.ttf") format("truetype");
}
@font-face {
  font-family: "OverusedGrotesk-Regular";
  font-weight: 400;
  src: url("/assets/fonts/OverusedGrotesk-Roman.woff2") format("woff2"),
    url("/assets/fonts/OverusedGrotesk-Roman.woff") format("woff"),
    url("/assets/fonts/OverusedGrotesk-Roman.ttf") format("truetype");
}
@font-face {
  font-family: "OverusedGrotesk-SemiBold";
  font-weight: 600;
  src: url("/assets/fonts/OverusedGrotesk-SemiBold.woff2") format("woff2"),
    url("/assets/fonts/OverusedGrotesk-SemiBold.woff") format("woff"),
    url("/assets/fonts/OverusedGrotesk-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "OverusedGrotesk-Bold";
  font-weight: 700;
  src: url("/assets/fonts/OverusedGrotesk-Bold.woff2") format("woff2"),
    url("/assets/fonts/OverusedGrotesk-Bold.woff") format("woff"),
    url("/assets/fonts/OverusedGrotesk-Bold.ttf") format("truetype");
}

:root {
  --primary: #16a34a; /* brand green */
  --primary-dark: #15803d;
  --secondary: #16a34a; /* align secondary with brand green */
  --accent-green: #16a34a;
  --green-50: #ecfdf5;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --accent-orange: #ff852f; /* brand orange */
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --text-dark: #111827;
  --text-gray: #6b7280;
  --bg-light: #f3f4f6;
  --bg-white: #ffffff;
  --border: #e5e7eb;
  --max-width: 1200px;
}

body {
  font-family: "OverusedGrotesk-Regular", Arial, sans-serif;
  font-size: 1rem;
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", sans-serif; */
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

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

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

.lang-selector {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 0.875rem;
}

/* Hero Section */
.hero {
  background: var(--bg-white);
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}

.about-page {
  background: var(--bg-white);
  padding: 20px 0 96px;
}

.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section (about page only) */
.about-page .hero {
  padding: 20px 20px;
  text-align: center;
}

.about-page .hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .hero p {
  font-size: 1.25rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  margin-bottom: 60px;
}

.about-page .hero-images {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.about-page .hero-images img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* border-radius: 8px; */
}

/* Story Section */
.about-page .story {
  padding: 80px 20px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.about-page .story-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: center;
}

.about-page .story-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: center;
  padding: 0 80px;
}

.about-page .story-image {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #764ba2 100%);
}

.about-page .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values Section */
.about-page .values {
  background: #f9f9f9;
  padding: 80px 20px;
}

.about-page .values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page .values h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.about-page .values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 40px;
}

.about-page .value-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
}

.about-page .value-icon {
  font-size: 2.75rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.about-page .value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-page .value-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Features Section */
.about-page .features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-page .features h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.about-page .features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.about-page .feature-list {
  list-style: none;
}

.about-page .feature-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #666;
}

.about-page .feature-list i {
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-page .feature-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.about-page .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ambition Section */
.about-page .ambition {
  /* background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  ); */
  color: var(--text-dark);
  padding: 80px 20px;
  text-align: center;
}

.about-page .ambition-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-page .ambition h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.3;
}

.about-page .ambition p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Community Section */
.about-page .community {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-page .community-content {
  text-align: center;
  margin-bottom: 60px;
}

.about-page .community h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-page .community-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
}

.about-page .community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-page .community-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.about-page .community-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-page .community-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Timeline Section */
.about-page .timeline {
  background: #f9f9f9;
  padding: 80px 20px;
}

.about-page .timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-page .timeline h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}

.about-page .timeline-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 40px;
}

.about-page .timeline-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.about-page .timeline-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-page .timeline-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* CTA Section */
.about-page .cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.about-page .cta h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.about-page .cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-page .cta-button {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s;
}

.about-page .cta-button:hover {
  background: #764ba2;
}

/* Contact Page */
.contact-page {
  padding: 120px 2rem 80px;
  background: var(--bg-white);
}

.contact-page .container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-page-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.contact-form textarea,
.contact-form input[type="text"],
.contact-form input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
}

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

.contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  border: none;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.contact-form button[type="submit"]:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.success-message {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--primary-dark);
  text-align: center;
  display: none;
}

@media (max-width: 768px) {
  .contact-page {
    padding: 100px 1.25rem 60px;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
.terms-page {
  background: var(--bg-white);
  padding: 60px 2rem 80px;
}
.terms-page section {
  padding: 0;
}

.terms-page .container {
  max-width: 960px;
  margin: 0 auto;
}

.terms-main-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.terms-intro {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.terms-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.terms-updated {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.terms-toc {
  flex-direction: column;
  align-items: flex-start;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 16px;
}

.terms-toc h3 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-toc ol {
  padding-left: 1.25rem;
}

.terms-toc li + li {
  margin-top: 0.25rem;
}

.terms-section {
  margin-bottom: 1rem;
  padding: 0;
}

.terms-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.terms-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.35rem;
}

.terms-section h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.terms-section p {
  margin-bottom: 0.5rem;
}

.terms-section ul,
.terms-section ol {
  margin-left: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 960px) {
  .about-page .hero h1 {
    font-size: 2rem;
  }

  .about-page .hero p {
    font-size: 1rem;
  }

  .about-page .hero-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page .story {
    grid-template-columns: minmax(0, 1fr);
    padding: 60px 20px;
  }

  .about-page .story-content h2 {
    font-size: 1.75rem;
  }

  .about-page .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page .timeline-items {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page .community-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 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="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

.app-badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.badge {
  height: 48px;
  background: #000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s;
}
.badge:hover {
  transform: scale(1.05);
}
.badge-icon {
  font-size: 1.5rem;
}
.badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.badge-label {
  font-size: 0.625rem;
  opacity: 0.8;
}
.badge-store {
  font-size: 0.875rem;
  font-weight: 600;
}

.phone-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4); */
  position: relative;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.875rem;
  text-align: center;
  padding: 0;
}

/* Social Proof Bar */
.social-proof {
  background: white;
  padding: 2rem;
  box-shadow: none;
}
.social-proof-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid #f1f1f1;
  padding-top: 1rem;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-gray);
}
.proof-icon {
  font-size: 1.5rem;
}

/* Section Styles */
section {
  padding: 5rem 2rem;
}
.section-alt {
  background: var(--bg-light);
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.feature-text {
  color: var(--text-gray);
  line-height: 1.7;
}

/* How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.step-text {
  color: var(--text-gray);
}

/* Screenshots Carousel */
.screenshots-wrap {
  position: relative;
}
.screenshots {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 2rem;
  padding-block: 3rem;
  padding-inline: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  touch-action: pan-x;
}
.screenshots::-webkit-scrollbar {
  display: none;
}
.screenshot {
  flex: 0 0 280px;
  scroll-snap-align: center;
}
.screenshot img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.screenshot-placeholder {
  width: 100%;
  aspect-ratio: 9/16;
  background: var(--bg-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}
.screenshots-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  color: var(--text-dark);
  cursor: pointer;
  z-index: 2;
}
.screenshots-nav.prev {
  left: 0.5rem;
}
.screenshots-nav.next {
  right: 0.5rem;
}
.screenshots-nav:disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Pricing – redesigned */
.pricing-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.panel {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}
.panel.buyer {
  border-color: var(--green-100);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.08);
}
.panel.seller {
  border-color: var(--orange-100);
  box-shadow: 0 10px 20px rgba(255, 133, 47, 0.1);
}
.chip {
  position: absolute;
  top: -16px;
  left: 24px;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: 1px solid transparent;
}
.chip-green {
  background: var(--green-50);
  color: #047857;
  border-color: var(--green-200);
}
.chip-orange {
  background: var(--orange-50);
  color: #9a3412;
  border-color: var(--orange-100);
}
.panel-heading {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
  font-weight: 800;
}
.pricing-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.pricing-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
}
.icon-pill {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.icon-pill.green {
  background: var(--green-50);
  color: #059669;
}
.icon-pill.orange {
  background: var(--orange-50);
  color: var(--accent-orange);
}
.item-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.125rem;
}
.item-desc {
  color: var(--text-gray);
}
.note-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 14px;
  padding: 1rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg-light);
}
.note-green {
  border-color: var(--green-200);
  background: var(--green-50);
}
.note-orange {
  border-color: var(--orange-100);
  background: var(--orange-50);
}
.note-strong {
  color: var(--primary);
}
.note-orange .note-strong {
  color: var(--accent-orange);
}

/* FAQ – redesigned */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.2s;
}
.faq-item:hover {
  transform: translateY(-2px);
}
.faq-question {
  padding: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}
.faq-question {
  color: var(--text-dark);
}
.faq-question:hover {
  background: transparent;
}
.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: transparent;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  color: var(--text-dark);
  transition: transform 0.25s ease;
}
.faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-gray);
  line-height: 1.7;
  display: none;
}
.faq-item.active {
  box-shadow: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-toggle {
  background: transparent;
  color: var(--primary);
  transform: rotate(180deg);
}

/* Download CTA */
.download-cta {
  background: var(--primary);
  text-align: center;
  color: white;
}
.download-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.download-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.waitlist-link {
  color: white;
  text-decoration: underline;
  margin-top: 1.5rem;
  display: inline-block;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.waitlist-link:hover {
  opacity: 1;
}

.waitlist-form {
  margin-top: 1.75rem;
  max-width: 480px;
}

.waitlist-form-download {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  max-width: 560px;
}

.waitlist-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.download-cta .waitlist-label {
  color: #ffffff;
}

.waitlist-input-row {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.hero .waitlist-input-row {
  flex-direction: column;
}

.waitlist-input-row input[type="text"],
.waitlist-input-row input[type="email"],
.waitlist-input-row input[type="tel"] {
  flex: 1 1 auto;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
}

.download-cta .waitlist-input-row input[type="text"],
.download-cta .waitlist-input-row input[type="email"],
.download-cta .waitlist-input-row input[type="tel"] {
  border-color: transparent;
}

.waitlist-button {
  flex: 0 0 auto;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto;
}

.hero .waitlist-button {
  width: 100%;
}

.waitlist-button:hover {
  background: var(--primary-dark);
}

.download-cta .waitlist-button {
  background: #ffffff;
  color: var(--primary);
}

.download-cta .waitlist-button:hover {
  background: #f9fafb;
}

.waitlist-form .waitlist-hint {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

.download-cta .waitlist-hint {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 2rem 2rem;
}
.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: white;
}
.footer-lang {
  display: flex;
  gap: 1rem;
}
.footer-lang button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s;
  font-size: 1rem;
}
.footer-lang button:hover {
  color: white;
}
.copyright {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

/* Reveal animation helpers */
.will-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.in-view {
  opacity: 1;
  transform: none;
}

/* Store badges */
.app-badges {
  gap: 0.75rem;
}
.store-badge {
  display: inline-flex;
  align-items: center;
}
.store-badge img,
.store-badge svg {
  height: 48px;
  width: auto;
  display: block;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .app-badges {
    align-items: center;
    justify-content: center;
  }
  .cta-buttons {
    justify-content: center;
  }
  .phone-mockup {
    order: -1;
  }
  .phone-frame {
    width: 250px;
    height: 500px;
  }
  .nav-links {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .social-proof-content {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    /* align-content: center; */
  }

  .pricing-panels {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 968px) {
  .hero .waitlist-form {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 1rem 60px;
  }
  section {
    padding: 3rem 1rem;
  }
  .app-badges {
    flex-direction: column;
  }
  .badge {
    width: 100%;
    justify-content: center;
  }
  .social-proof-content {
    align-items: flex-start;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links,
  .footer-lang {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links a {
    width: 100%;
  }

  .waitlist-input-row {
    flex-direction: column;
  }

  .waitlist-button {
    width: 100%;
  }
}

.img-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Contact Form */
#contact-form {
  display: block;
  width: 100%;
  text-align: left;
}
.form-container,
.contact-form {
  display: flex;
  flex-direction: column;
}
.form-container input,
textarea {
  display: block;
  width: 100%;
  padding: 16px var(--padding-20);
  flex: 1;
  border: 0;
  background-color: #f1f1f1;
  border-radius: 8px;
  margin: 12px 0;
  box-sizing: border-box;
}

button {
  display: block;
  width: 100%;
  background-color: var(--primary);
  color: var(--secondary);
  padding: 14px var(--padding-20);
  margin: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background-color: var(--primary);
}
p.privacy {
  font-size: 12px;
  font-weight: 100;
}

/* Success Message */
.success-message-container {
  display: none;
  padding: 5px 10px;
  border: 2px solid var(--primary-dark);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.message {
  font-size: 18px;
  color: var(--primary);
  /* margin-top: 20px; */
}

.hero-images img {
  width: 100%;
  /* height: 400px; */
  /* object-fit: cover; */
}
