/* CSS Variables */
:root {
  --divider-secondary: rgba(205, 214, 218, 0.25);
  --text-primary: #000;
  --text-secondary: rgba(60, 60, 67, 0.85);
  --accent-green: #B8EB21;
  --border-gray: #E5E7EB;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-100: #F3F4F6;
  --white: #FFF;
  --black: #000;
}

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

body {
  font-family: Inter, -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--white);
}

.landing-page {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 56px;
  background: var(--white);
  z-index: 1000;
}

.nav-overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1171px;
  height: 38px;
  margin: 9px auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 20px;
  width: auto;
  object-fit: contain;
}

.logo-image.footer {
  height: 20px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
}

/* Fallback for logo text if needed */
.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-item {
  display: flex;
  align-items: center;
  padding: 9px 16px 10px;
  border-radius: 8px;
  gap: 4px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #404040;
  text-decoration: none;
}

.external-icon {
  width: 12px;
  height: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.hamburger-btn:hover {
  background-color: var(--gray-100);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: var(--gray-700);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-line:not(:last-child) {
  margin-bottom: 4px;
}

.hamburger-line.open:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

.hamburger-line.open:nth-child(2) {
  opacity: 0;
}

.hamburger-line.open:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 999;
  animation: slideDown 0.2s ease-out;
}

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

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-gray);
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  color: #404040;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}

.mobile-menu-item:hover {
  color: var(--gray-900);
  background-color: var(--gray-100);
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 6px;
}

.mobile-menu-item:not(:last-child) {
  border-bottom: 1px solid var(--divider-secondary);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px;
}

.btn-secondary.mobile,
.btn-primary.mobile {
  width: 100%;
  justify-content: center;
}

/* Page Content */
.page-content {
  margin-top: 56px;
  padding: 0 20px;
  background: var(--white);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 95.5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 105px;
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
  position: relative;
}

.hero-main {
  width: 100%;
  max-width: 768px;
  position: relative;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-title-container {
  display: flex;
  padding: 0 20px 13px 20px;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 768px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.5px;
  text-align: center;
  color: var(--gray-900);
  margin: 0;
}

.hero-title-accent {
  font-size: 52px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -1.5px;
  text-align: center;
  color: var(--accent-green);
  margin: 0;
}

.hero-description {
  display: flex;
  width: 100%;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  color: var(--gray-600);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 29px;
  margin: 28px 0;
  padding: 0 20px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 446px;
  flex-wrap: wrap;
}

.hero-mockup {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid var(--border-gray);
}

.mockup-main {
  width: 100%;
  height: auto;
  display: block;
}

/* Button Styles */
.btn-shopify {
  display: flex;
  padding: 13px 33px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--black);
  border: none;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-beta {
  display: flex;
  padding: 13px 28px 13px 27px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  display: flex;
  padding: 10px 17px 11px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  display: flex;
  padding: 10px 17px 11px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--gray-900);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.btn-cta {
  display: flex;
  padding: 13px 33px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 2px solid var(--accent-green);
  background: var(--black);
  color: #F0F0F0;
  font-family: Helvetica, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
}

.btn-contact {
  display: flex;
  padding: 8px 11px 9px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--border-gray);
  background: var(--white);
  color: var(--gray-900);
  font-size: 13px;
  width: fit-content;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
}

.shopify-icon,
.arrow-icon,
.email-icon {
  width: 20px;
  height: 20px;
}

/* Section Styles */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.section-title {
  color: #171717;
  text-align: center;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}

.section-description {
  width: 100%;
  max-width: 701px;
  color: var(--gray-600);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  padding: 0 20px;
}

/* Problem Section */
.problem-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-right: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.features-grid {
  display: flex;
  width: 100%;
  padding: 1px 0;
  justify-content: center;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.feature-card {
  display: flex;
  width: 100%;
  min-width: 280px;
  flex: 1;
  max-width: 382.66px;
  padding: 24px 25px 62px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  background: var(--white);
}

.feature-icon-container {
  display: flex;
  height: 128px;
  padding: 32px 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #FAFBF9;
}

.feature-icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-gray);
  background: linear-gradient(180deg, #FFF 0%, #F5FFEF 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.feature-title {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
}

.feature-description {
  color: var(--gray-600);
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
}

/* Product Section */
.product-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 150px 20px 100px 20px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-right: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.product-header {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 50px;
}

.product-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  color: #1D1D1B;
  font-size: 36px;
  font-weight: 500;
  line-height: 48px;
  width: 100%;
  max-width: 719px;
}

.product-subtitle {
  color: #1D1D1B;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  width: 100%;
  max-width: 577px;
}

.product-features {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 50px 0;
}

.product-feature {
  display: flex;
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.product-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.product-feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.product-feature-title {
  color: #1D1D1B;
  font-family: Helvetica, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.product-feature-description {
  align-self: stretch;
  color: var(--black);
  font-family: Helvetica, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.product-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.nav-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D1D5DB;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.nav-dot.active {
  background-color: #B8EB21;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #D1D5DB;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  border-color: #B8EB21;
  background-color: #F8FFF4;
}

/* Duplicated styles removed - using styles defined above */

/* Solution Section */
.solution-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--border-gray);
}

/* How-to Section */
.how-to-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 150px 20px 100px 20px;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  border: 1px solid var(--border-gray);
}

.steps-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 72px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1px;
  border: 0.6px solid var(--border-gray);
  flex-direction: row; /* Explicit direction for normal items */
}

.step-item.reverse {
  flex-direction: row-reverse !important; /* Force reverse layout */
}

.step-image {
  width: 382px;
  height: 301px;
}

.step-content {
  display: flex;
  padding: 0 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 19px;
  border-radius: 2px;
}

.step-label {
  color: #1D1D1B;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
}

.step-title {
  color: var(--gray-900);
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.step-description {
  width: 322px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* Why Section */
.why-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.benefits-grid {
  display: grid;
  height: 598px;
  align-self: stretch;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card {
  display: flex;
  width: 383px;
  height: 300px;
  padding: 32px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
  border: 1px solid var(--border-gray);
  background: var(--white);
}

.benefit-icon {
  display: flex;
  width: 64px;
  height: 64px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  border: 1px solid var(--border-gray);
  background: linear-gradient(180deg, #FFF 0%, #F3F4F6 100%);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.benefit-title {
  color: var(--gray-900);
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
}

.benefit-description {
  color: var(--gray-600);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* Video Section */
.video-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-top: 100px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--border-gray);
  border-right: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.video-placeholder {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  height: auto;
  border-right: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.tablet-mockup {
  position: relative;
  width: 100%;
  height: auto;
}

.tablet-frame {
  width: 100%;
  height: auto;
  display: block;
}

.tablet-video {
  position: absolute;
  /* Adjusted for the new black tablet mockup */
  top: 12%;           /* Distance from top of tablet to screen */
  left: 8.5%;         /* Distance from left edge to screen */
  width: 83%;         /* Width of the tablet screen area */
  height: 76%;        /* Height of the tablet screen area */
  object-fit: cover;
  border-radius: 4px; /* Smaller radius for this mockup */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.tablet-video.playing {
  opacity: 1;
}

.video-play-overlay {
  position: absolute;
  top: 12%;
  left: 8.5%;
  width: 83%;
  height: 76%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.3s ease;
}

.video-play-overlay:hover {
  opacity: 0.9;
}

.play-button {
  margin-bottom: 16px;
  transform: scale(1);
  transition: transform 0.2s ease;
}

.video-play-overlay:hover .play-button {
  transform: scale(1.1);
}

.play-text {
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  margin: 0;
}

/* CTA Section */
.cta-section {
  display: flex;
  padding: 81px 20px 53px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 45px;
  background: var(--accent-green);
}

.cta-content {
  display: flex;
  width: 100%;
  max-width: 751px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-title {
  color: var(--black);
  text-align: center;
  font-size: 31px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.9px;
}

.cta-description {
  width: 100%;
  max-width: 598px;
  color: var(--black);
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
}

.cta-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 248px;
  height: 50px;
}

/* FAQ Section */
.faq-section {
  display: flex;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 150px 20px 100px 20px;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  border-right: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  border-left: 1px solid var(--border-gray);
}

.faq-list {
  display: flex;
  width: 100%;
  max-width: 674px;
  flex-direction: column;
  align-items: flex-start;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.faq-divider {
  display: flex;
  height: 1px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  background: var(--divider-secondary);
}

.faq-surface {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.faq-header {
  display: flex;
  padding: 16px 0;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  cursor: pointer;
}

.faq-title {
  display: flex;
  align-items: flex-start;
  flex: 1 0 0;
  align-self: stretch;
}

.faq-title h3 {
  flex: 1 0 0;
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
}

.faq-icon {
  display: flex;
  width: 24px;
  align-items: flex-start;
  gap: 10px;
}

.faq-content {
  display: flex;
  padding: 16px 24px 32px 24px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.faq-content p {
  align-self: stretch;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

/* Footer */
.footer {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  background: var(--white);
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 124px 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  align-self: flex-start;
  min-width: 180px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section-title {
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.footer-link {
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  padding: 4px 0;
  border-radius: 6px;
  display: block;
}

.footer-link:hover {
  background: var(--gray-100);
}

.footer-bottom {
  position: relative;
  margin-top: 30px;
  margin-left: 124px;
  margin-bottom: 40px;
}

.footer-copyright {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

/* Responsive Design */

/* Desktop (above 768px) */
@media (min-width: 769px) {
  .hamburger-btn {
    display: none;
  }
  
  .nav-actions-desktop {
    display: flex;
  }
  
  .mobile-menu {
    display: none !important;
  }
}

/* Tablet Large (1024px and down) */
@media (max-width: 1024px) {
  .page-content {
    padding: 0 40px;
  }
  
  .nav-container {
    padding: 0 40px;
  }
  
  .hero-section {
    gap: 60px;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 42px;
    line-height: 46px;
  }
  
  .hero-title-accent {
    font-size: 44px;
    line-height: 46px;
  }
  
  /* product-features - slideshow layout maintained on all screens */
  
  .features-grid {
    justify-content: center;
    gap: 0;
  }
  
  .feature-card {
    max-width: 100%;
    flex: 1 1 45%;
  }
}

/* Tablet (768px and down) */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .nav-actions-desktop {
    display: none;
  }
  
  .hamburger-btn {
    display: flex;
  }
  
  .nav-actions {
    gap: 12px;
  }
  
  .logo-image {
    height: 18px;
  }
  
  .logo-image.footer {
    height: 20px;
    max-width: 80px;
    width: auto;
    object-fit: contain;
  }
  
  .page-content {
    padding: 0 20px;
  }
  
  .hero-section {
    gap: 40px;
    padding-top: 40px;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 36px;
  }
  
  .hero-title-accent {
    font-size: 34px;
    line-height: 36px;
  }
  
  .hero-description {
    font-size: 16px;
    line-height: 26px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  

  
  .btn-shopify,
  .btn-beta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .features-grid {
    flex-direction: column;
  }
  
  .feature-card {
    max-width: 100%;
    border-right: none;
    border-left: none;
  }
  
  .product-header {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .product-title {
    font-size: 30px;
    line-height: 38px;
    width: 100%;
  }
  
  .product-subtitle {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
  }
  
  .benefit-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 24px 20px;
  }
  
  .how-to-section {
    padding: 75px 20px 50px;
  }
  
  .step-item,
  .step-item.reverse {
    flex-direction: column !important; /* Force column layout on mobile */
  }
  
  .step-image {
    width: 100%;
    height: auto;
  }
  
  .step-content {
    padding: 30px 20px;
  }
  
  .step-description {
    width: 100%;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .faq-section {
    padding: 75px 20px 50px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px 0;
  }
  
  .footer-links {
    justify-content: space-between;
  }
  
  .footer-brand {
    gap: 16px;
    min-width: unset;
  }
  
  .footer-bottom {
    position: static;
    margin-top: 40px;
    text-align: center;
  }

  /* Product slideshow responsive */
  .product-image {
    height: 300px;
  }
  
  .product-navigation {
    gap: 30px;
  }
  
  .nav-btn {
    width: 35px;
    height: 35px;
  }
}

/* Mobile Large (480px and down) */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }
  
  .page-content {
    padding: 0 15px;
  }
  
  .logo-image {
    height: 16px;
  }
  
  .logo-image.footer {
    height: 20px;
    max-width: 80px;
    width: auto;
    object-fit: contain;
  }
  
  .hero-title {
    font-size: 26px;
    line-height: 32px;
  }
  
  .hero-title-accent {
    font-size: 28px;
    line-height: 32px;
  }
  
  .hero-description {
    font-size: 15px;
    line-height: 24px;
  }
  

  
  .section-title {
    font-size: 20px;
  }
  
  .section-description {
    font-size: 14px;
    line-height: 22px;
  }
  
  .product-title {
    font-size: 22px;
    line-height: 28px;
  }
  
  .product-subtitle {
    font-size: 15px;
    line-height: 22px;
  }
  
  .feature-card {
    padding: 20px 15px 40px 15px;
  }
  
  .benefit-card {
    padding: 20px 15px;
  }
  
  .cta-section {
    padding: 60px 15px 40px;
  }
  
  .cta-title {
    font-size: 26px;
    line-height: 32px;
  }
  
  .cta-description {
    font-size: 15px;
    line-height: 24px;
  }
  
  .footer-content {
    padding: 25px 15px 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Partnership Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 0;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.partnership-form {
  padding: 0 24px 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  background: white;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8EB21;
  box-shadow: 0 0 0 3px rgba(184, 235, 33, 0.1);
}

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

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
}

.btn-primary {
  background: #B8EB21;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #a3d119;
}

/* Video responsive */
@media (max-width: 768px) {
  .play-button svg {
    width: 60px;
    height: 60px;
  }
  
  .play-text {
    font-size: 16px;
  }
  
  .tablet-video,
  .video-play-overlay {
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .play-button svg {
    width: 50px;
    height: 50px;
  }
  
  .play-text {
    font-size: 14px;
  }
  
  .tablet-video,
  .video-play-overlay {
    /* Adjust positioning for smaller screens with new mockup */
    top: 11%;
    left: 7%;
    width: 86%;
    height: 78%;
  }
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 16px;
  }
  
  .modal-content {
    border-radius: 8px;
  }
  
  .modal-header {
    padding: 20px 20px 0;
    margin-bottom: 20px;
  }
  
  .partnership-form {
    padding: 0 20px 20px;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Small (320px and down) */
@media (max-width: 320px) {
  .logo-image {
    height: 14px;
  }
  
  .logo-image.footer {
    height: 20px;
    max-width: 80px;
    width: auto;
    object-fit: contain;
  }
  
  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }
  
  .hero-title-accent {
    font-size: 26px;
    line-height: 30px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .product-title {
    font-size: 22px;
    line-height: 28px;
  }
  
  .cta-title {
    font-size: 22px;
    line-height: 28px;
  }

  /* Product slideshow mobile */
  .product-image {
    height: 250px;
  }
  
  .product-navigation {
    gap: 20px;
  }
  
  .nav-btn {
    width: 32px;
    height: 32px;
  }
}
