/* Font Face */
@font-face {
  font-family: 'Circular';
  src: url('/assets/fonts/CircularStd-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular';
  src: url('/assets/fonts/CircularStd-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circular';
  src: url('/assets/fonts/CircularStd-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}

html {
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #191A17;
  --color-white: #ffffff;
  --color-gray-light: #f3f3f1;
  --color-gray-medium: #e5e5e5;
  --color-gray-dark: #3d3d3d;
  --color-purple: #A7BEAB;
  --color-green: #B8D1BC;
  --color-lavender: #D7DD92;
  
  --header-height: 80px;
  --section-padding: 64px;
  --max-width: 1320px;
}

body {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-black);
  background-color: #22213d;
  margin: 0;
  padding: 0;
}

/* Ensure all text elements inherit Circular font */
h1, h2, h3, h4, h5, h6,
button, input, textarea, select,
a, p, span, div, li, td, th {
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background-color: rgba(34, 33, 61, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--color-white);
  margin: 0;
  padding: 0;
  margin-bottom: 0 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  color: var(--color-black);
}

.header-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-padding);
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.logo:hover {
  opacity: 0.7;
}

.logo-img {
  height: 24px;
  width: auto;
  max-width: 100px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.header.scrolled .logo-img {
  filter: none;
}

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

.nav-link {
  color: inherit;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  transition: opacity 0.2s, color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  position: relative;
  opacity: 0.7;
}

.nav-link:hover {
  opacity: 0.9;
}

.nav-link.active {
  opacity: 1;
}

/* Active state for hero section (white header) */
.header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.header:not(.scrolled) .nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}

.header:not(.scrolled) .nav-link.active {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

/* Active state for scrolled header (dark header) */
.header.scrolled .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

.header.scrolled .nav-link:hover {
  color: rgba(0, 0, 0, 0.9);
}

.header.scrolled .nav-link.active {
  color: rgba(0, 0, 0, 1);
  opacity: 1;
}


/* Hamburger Menu */
.btn-menu {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  -webkit-touch-callout: none;
}

.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 16px;
  position: relative;
}

.menu-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.header.scrolled .menu-icon span {
  background-color: var(--color-black);
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-icon span:nth-child(3) {
  bottom: 0;
}

.btn-menu.active .menu-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.btn-menu.active .menu-icon span:nth-child(2) {
  opacity: 0;
}

.btn-menu.active .menu-icon span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: rgba(34, 33, 61, 0.95) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  backdrop-filter: blur(20px) !important;
  padding: 32px var(--section-padding);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, -webkit-backdrop-filter 0.3s ease, backdrop-filter 0.3s ease, background-color 0.3s ease;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mobile-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav.scrolled .mobile-nav-link {
  color: var(--color-black);
}

.mobile-nav.active {
  transform: translateY(0) translateZ(0);
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-backdrop-filter: blur(20px) !important;
  backdrop-filter: blur(20px) !important;
}

.mobile-nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 400;
  padding: 12px 0;
  text-align: center;
  transition: opacity 0.2s, color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.mobile-nav-link:hover {
  opacity: 0.7;
}


/* Sections */
.section {
  padding: 80px 0;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  margin: 0;
}

.section.section-hero {
  padding: 80px 0 !important;
  margin: 0 !important;
  margin-top: 0 !important;
  min-height: calc(100vh - 80px) !important;
  position: relative;
  top: 0;
}

@media (max-width: 899px) {
  .section.section-hero {
    min-height: 100vh !important;
  }
}

.section-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  width: 100%;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  max-width: 440px;
}

.section-hero .section-title {
  font-size: 72px;
  max-width: none;
}

.section-body {
  font-size: 24px;
  line-height: 1.4;
  max-width: 440px;
  color: rgba(0, 0, 0, 0.7);
}

.section-body strong {
  font-weight: 700;
  letter-spacing: 0;
}

/* Hero Section */
.section-hero {
  background-color: #22213d;
  color: var(--color-white);
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section-hero .section-layout {
  padding-top: 0;
  padding-bottom: 0;
  grid-template-columns: 1fr 1fr;
}

.section-hero .section-title {
  color: var(--color-white);
}

.section-hero .section-body {
  color: rgba(255, 255, 255, 0.8);
}

/* Feature Sections */
.section-feature-1 {
  background-color: #b99bf6;
  position: relative;
  z-index: 2;
}

.section-feature-2 {
  background-color: #a8e6e7;
  position: relative;
  z-index: 2;
}

.section-feature-3 {
  background-color: #ecf19c;
  position: relative;
  z-index: 2;
}

.section-pricing {
  background-color: #F3F3F1;
  position: relative;
  z-index: 2;
}

.section-faq {
  background-color: var(--color-white);
  position: relative;
  z-index: 2;
}

.footer {
  background-color: #22213d;
  position: relative;
  z-index: 2;
}

/* Phone Figure */
.phone-figure {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -200px;
  z-index: 1;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 409px;
  aspect-ratio: 409 / 868;
  background-color: var(--color-black);
  border-radius: 64px;
  padding: 8px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 56px;
  overflow: hidden;
  position: relative;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  contain: layout style paint;
}

.phone-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-sizing: border-box;
}

.phone-content-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--color-white);
  font-size: 18px;
  padding: 40px;
  text-align: center;
}

/* Chat Bubble */
.chat-bubble {
  position: absolute;
  bottom: 16px;
  right: -40px;
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: 16px;
  border-radius: 16px;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.chat-message {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-action {
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.chat-action:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* App Store Button */
.app-download-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.app-store-button {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.app-store-button:hover {
  opacity: 0.8;
}

.qr-code-image {
  height: 75px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 8px;
}

/* QR code for feature sections - 120x120 */
.section-feature .qr-code-image {
  width: 120px;
  height: 120px;
}

/* Hide App Store button on desktop for feature sections, show only QR code */
.section-feature .app-store-button-feature {
  display: none;
}

/* Pricing Section */
.section-pricing {
  background-color: #F3F3F1;
  padding: 120px 0;
}

.section-pricing .section-layout {
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

.pricing-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
}

.pricing-toggle {
  display: flex;
  gap: 0;
  background-color: #EBEBEB;
  padding: 4px;
  border-radius: 12px;
  width: fit-content;
  margin-bottom: 8px;
  align-self: flex-end;
  margin-left: auto;
  max-width: 100%;
}

.toggle-option {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: var(--color-black);
  transition: all 0.2s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.toggle-option-active {
  background-color: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.toggle-badge {
  background-color: #B0D0D0;
  color: var(--color-black);
  padding: 3px 8px;
  border-radius: 12px;
  font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 100%;
}

.pricing-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  width: 100%;
  min-width: 0;
}

.pricing-card-premium {
  border: 1px solid var(--color-gray-medium);
  width: 100%;
  min-width: 0;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
}

.pricing-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
}

.price-amount {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0;
}

.price-period {
  font-size: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.pricing-billing {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.5;
}

.pricing-billing-yearly {
  display: block;
}

.billing-original {
  text-decoration: line-through;
  margin-right: 4px;
}

.billing-discount {
  font-weight: 400;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-feature {
  font-size: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
}

.pricing-feature::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: 0;
  font-size: 18px;
}

/* FAQ Section */
.section-faq {
  background-color: var(--color-white);
  padding: 120px 0;
}

.section-faq .section-layout {
  grid-template-columns: 1fr;
  gap: 16px;
}

.faq-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-gray-medium);
  padding: 16px 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.9) !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.9) !important;
  cursor: pointer;
  padding: 16px 0;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  gap: 16px;
}

.faq-question span:first-child {
  color: rgba(0, 0, 0, 0.9) !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.9) !important;
}

.faq-question:focus,
.faq-question:active {
  color: rgba(0, 0, 0, 0.9) !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.9) !important;
  outline: none;
}

.faq-question:hover {
  color: rgba(0, 0, 0, 0.7) !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.7) !important;
}

.faq-icon {
  color: rgba(0, 0, 0, 0.9) !important;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.9) !important;
}

.faq-icon {
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transform-origin: center center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease-in-out;
  padding: 0 40px 0 0;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 12px 40px 12px 0;
  opacity: 1;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.7);
}

/* Footer */
.footer {
  background-color: #22213d;
  color: var(--color-white);
  padding: 80px 0 24px;
}

.footer-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  margin-bottom: 48px;
  width: 100%;
}

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

.footer-slot-left {
  justify-content: flex-start;
}

.footer-slot-right {
  justify-content: flex-end;
}

.footer-logo {
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  display: block;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-self: center;
}


.footer-link {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.footer-link:hover {
  opacity: 0.7;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.app-store-button {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.app-store-button:hover {
  opacity: 0.8;
}

.app-store-badge {
  height: 64px;
  width: auto;
  display: block;
}

.product-hunt-badge {
  width: 200px;
  height: auto;
  display: block;
}

/* Footer App Store button - smaller size */
.footer .app-store-badge {
  height: 40px;
}

.footer-copyright {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1349px) {
  .section-layout {
    padding: 0 var(--section-padding);
  }
}

@media (max-width: 1200px) {
  .section-hero .section-title {
    font-size: 64px;
  }
  
  .section-body {
    font-size: 22px;
  }
}

@media (max-width: 1050px) {
  .section-pricing .section-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  
  .section-pricing .section-content {
    order: 1;
  }
  
  .section-pricing .pricing-wrapper {
    order: 2;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 899px) {
  :root {
    --section-padding: 32px;
  }

  .header {
    height: auto;
    min-height: 80px;
  }

  .section-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 var(--section-padding);
  }

  .section-content {
    order: 1;
    align-items: center;
    text-align: center;
  }

  .section-figure {
    order: 2;
  }
  
  .section-pricing .section-content {
    order: 1;
  }
  
  .section-pricing .pricing-wrapper {
    order: 2;
  }

  .app-download-group {
    justify-content: center;
  }

  .section {
    padding: 64px 0;
    min-height: auto;
  }

  .section-hero {
    padding: 80px 0;
  }
  
  .section-pricing {
    padding: 64px 0;
  }
  
  .section-faq {
    padding: 64px 0;
  }
  
  .footer {
    padding: 64px 0 24px;
  }

  .section-hero .section-title {
    font-size: 56px;
  }
  
  .section-title {
    font-size: 40px;
    max-width: 100%;
  }

  .section-body {
    font-size: 20px;
    max-width: 100%;
  }

  .header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px var(--section-padding);
  }

  .nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-link {
    font-size: 16px;
  }

  .phone {
    max-width: 362px;
    border-radius: 56px;
  }
  
  .phone-screen {
    border-radius: 50px;
  }

  .chat-bubble {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  .pricing-toggle {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-self: center;
    margin-left: 0;
    margin-right: 0;
  }
  
  .toggle-option {
    flex: 1;
    justify-content: center;
    min-width: 0;
    font-weight: 400;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    display: flex;
    flex-direction: column;
  }

  .pricing-card {
    order: 2;
  }

  .pricing-card-premium {
    order: 1;
    margin-top: 0;
  }

  .faq-title {
    font-size: 48px;
  }

  .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
  }

  .footer-slot,
  .footer-slot-left,
  .footer-slot-right {
    justify-content: center;
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    flex: 0;
  }
  
  .footer-badges {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 599px) {
  :root {
    --section-padding: 16px;
  }

  .header-wrapper {
    padding: 12px var(--section-padding);
  }

  .section {
    padding: 48px 0;
  }

  .section-hero {
    padding: 64px 0;
  }
  
  .section-pricing {
    padding: 48px 0;
  }
  
  .section-faq {
    padding: 48px 0;
  }

  .section-hero .section-title {
    font-size: 48px;
  }

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

  .section-body {
    font-size: 18px;
  }

  .logo-img {
    height: 24px;
  }

  .phone {
    max-width: 280px;
    border-radius: 52px;
  }
  
  .phone-screen {
    border-radius: 46px;
  }

  .chat-bubble {
    padding: 12px;
    margin-top: 12px;
  }

  .chat-message {
    font-size: 14px;
  }

  .chat-action {
    font-size: 12px;
    padding: 6px 10px;
  }

  .qr-code {
    width: 100px;
    height: 100px;
  }

  .pricing-toggle {
    padding: 4px;
    width: 100%;
    max-width: 100%;
    gap: 0;
    background-color: #EBEBEB;
  }
  
  .toggle-option {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
  }
  
  .toggle-badge {
    font-size: 11px;
    padding: 3px 6px;
    margin-left: 4px;
    flex-shrink: 0;
  }

  .pricing-card {
    padding: 20px;
  }

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

  .price-amount {
    font-size: 40px;
  }

  .price-period {
    font-size: 18px;
  }

  .pricing-feature {
    font-size: 15px;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .faq-question {
    font-size: 18px;
    padding: 12px 0;
  }

  .faq-answer {
    padding: 0 20px 0 0;
  }

  .faq-item.active .faq-answer {
    padding: 10px 20px 10px 0;
  }

  .faq-answer p {
    font-size: 16px;
  }

  .footer {
    padding: 48px 0 20px;
  }

  .footer-logo {
    height: 36px;
  }

  .footer-logo-img {
    height: 36px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }

  .footer-column {
    gap: 16px;
    align-items: center;
  }
  
  .footer-badges {
    align-items: center;
  }
  
  /* App Store badges on mobile - same size for all */
  .app-store-badge {
    height: 56px;
  }
  
  /* Footer badge same size as others on mobile */
  .footer .app-store-badge {
    height: 56px;
  }
  
  .qr-code-image {
    display: none;
  }
  
  /* Show App Store button on mobile for feature sections */
  .section-feature .app-store-button-feature {
    display: inline-block;
  }
}

@media (max-width: 399px) {
  .section-hero .section-title {
    font-size: 40px;
  }
  
  .section-title {
    font-size: 28px;
  }

  .section-body {
    font-size: 16px;
  }

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

  .phone {
    max-width: 240px;
  }
}


/* Safari-specific fixes for phone containers */
@supports (-webkit-appearance: none) {
  .phone-screen {
    min-height: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .phone-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
  }
}
