:root {
  --color-primary: #FFD84D;
  --color-secondary-1: #1E1E2E;
  --color-secondary-2: #5D5FEF;
  --color-accent-1: #4CD964;
  --color-accent-2: #FF6F61;
  --color-bg: #F9F9F9;
  --radius: 16px;
  --shadow: 0 4px 12px rgba(30,30,46,0.10);
  --shadow-card: 0 2px 8px rgba(30,30,46,0.08);
  --spacing: 32px;
  --max-width: 1080px;
}

html, body {
  background: var(--color-bg);
  color: var(--color-secondary-1);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

nav {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(30, 30, 46, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  width: 100%;
  padding: 12px 24px;
}

.logo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.logo-icon {
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-secondary-2);
}

.logo-byline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

nav a {
  color: var(--color-secondary-1);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
}

nav a:hover {
  color: var(--color-secondary-2);
  background: rgba(93, 95, 239, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(93, 95, 239, 0.2);
  transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1000;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: var(--color-secondary-1);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger:hover span {
  background: var(--color-secondary-2);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 216, 77, 0.15) 0%, rgba(93, 95, 239, 0.08) 100%);
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 50%;
  min-width: 0;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  position: relative;
}

.whatsapp-frame {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,30,46,0.2);
  max-width: 100%;
  height: auto;
}

.whatsapp-header {
  background: #128c7e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.whatsapp-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.whatsapp-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-contact {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
  margin: 0;
}

.whatsapp-status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.whatsapp-header-icons {
  display: flex;
  gap: 16px;
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  margin-left: auto;
}

.whatsapp-header-icons span {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-header-icons span:hover {
  opacity: 0.7;
}

.whatsapp-content {
  padding: 0;
  background: #efeae2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.hero-demo-gif {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.hero-right h1 {
  font-size: 2.8rem;
  color: var(--color-secondary-1);
  margin: 0 0 8px 0;
  font-weight: 700;
  transition: all 0.3s ease;
  line-height: 1.2;
}

.hero-tagline {
  color: var(--color-secondary-2);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
}


.cta-button {
  background: var(--color-accent-2);
  color: #fff;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%);
  transition: all 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: var(--color-accent-1);
  color: var(--color-secondary-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 217, 100, 0.3);
}

.cta-button.primary {
  background: var(--color-secondary-2);
}

.cta-button.primary:hover {
  background: #4D4BCC;
  box-shadow: 0 8px 25px rgba(93, 95, 239, 0.3);
}

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

.cta-button.secondary:hover {
  background: var(--color-secondary-2);
  color: white;
}

.cta-button.full {
  width: 100%;
  text-align: center;
}

.hero-right-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.hero-description {
  color: var(--color-secondary-1);
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
  flex: 1;
}

.hero-cta-group {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: -80px;
}

.qr-section {
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qr-label {
  font-size: 0.85rem;
  color: var(--color-secondary-1);
  margin: 0;
  font-weight: 600;
  text-align: center;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(30,30,46,0.15);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--color-secondary-2) 20%,
    var(--color-secondary-2) 80%,
    transparent 100%);
  opacity: 0.3;
}

.divider-dots {
  position: absolute;
  display: flex;
  gap: 8px;
  background: var(--color-bg);
  padding: 0 16px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-secondary-2);
  opacity: 0.6;
  animation: pulse 2s infinite ease-in-out;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
}

.benefits {
  padding: 80px 0;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 64px;
  color: var(--color-secondary-1);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(30, 30, 46, 0.15);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(93, 95, 239, 0.3);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: inline-block;
}

.benefit-card h3 {
  color: var(--color-secondary-1);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.benefit-card p {
  color: var(--color-secondary-1);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.how-it-works {
  padding: 80px 0;
  background: linear-gradient(180deg,
    rgba(250, 251, 255, 0) 0%,
    rgba(246, 247, 251, 0.5) 50%,
    rgba(250, 251, 255, 0) 100%);
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 {
  color: var(--color-secondary-1);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.how-subtitle {
  color: var(--color-secondary-1);
  font-size: 1.2rem;
  opacity: 0.7;
  font-weight: 500;
  margin-top: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 80px rgba(30, 30, 46, 0.15);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(93, 95, 239, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-secondary-2), var(--color-accent-1));
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(93, 95, 239, 0.3);
}

.step-card h3 {
  color: var(--color-secondary-1);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.step-card p {
  color: var(--color-secondary-1);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin: 0;
}

.pricing {
  padding: 80px 0;
  text-align: center;
}

.pricing h2 {
  color: var(--color-secondary-1);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-subtitle {
  color: var(--color-secondary-1);
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 48px;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 48px 40px;
  max-width: 400px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(93, 95, 239, 0.1) 0%, rgba(76, 217, 100, 0.05) 100%);
  border: 2px solid var(--color-secondary-2);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 30px 80px rgba(30, 30, 46, 0.2);
}

.pricing-header h3 {
  color: var(--color-secondary-1);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.pricing-period {
  color: var(--color-secondary-2);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
}

.pricing-price {
  margin: 32px 0;
}

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

.currency {
  font-size: 1.2rem;
  color: var(--color-secondary-2);
  font-weight: 700;
}

.amount {
  font-size: 3rem;
  color: var(--color-secondary-1);
  font-weight: 700;
}

.period {
  font-size: 1rem;
  color: var(--color-secondary-1);
  opacity: 0.7;
}

.price-note {
  color: var(--color-accent-1);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 8px 0 0 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.pricing-features li {
  color: var(--color-secondary-1);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(93, 95, 239, 0.1);
  opacity: 0.9;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  color: var(--color-secondary-1);
  font-size: 1rem;
  opacity: 0.7;
  margin-top: 32px;
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(135deg,
    rgba(93, 95, 239, 0.05) 0%,
    rgba(255, 216, 77, 0.05) 100%);
  border-radius: 32px;
  margin: 64px 0;
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  text-align: center;
  color: var(--color-secondary-1);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 36px 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(30, 30, 46, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--color-secondary-1);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  opacity: 0.85;
  margin: 0;
  flex-grow: 1;
}

.testimonial-author {
  padding-top: 12px;
  border-top: 1px solid rgba(93, 95, 239, 0.1);
}

.author-name {
  color: var(--color-secondary-1);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.author-role {
  color: var(--color-secondary-2);
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

.contact {
  background: linear-gradient(135deg,
    rgba(255, 216, 77, 0.08) 0%,
    rgba(93, 95, 239, 0.08) 100%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 60px rgba(30, 30, 46, 0.1);
  padding: 80px 0;
  text-align: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

.contact h2 {
  color: var(--color-secondary-1);
  margin-bottom: 16px;
  font-size: 2.4rem;
  font-weight: 700;
}

.contact-subtitle {
  color: var(--color-secondary-2);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 48px auto 0 auto;
  max-width: 700px;
}

.contact-method {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px 24px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(30, 30, 46, 0.15);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(93, 95, 239, 0.3);
}

.method-icon {
  font-size: 2.5rem;
}

.contact-method h4 {
  color: var(--color-secondary-1);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.contact-method p {
  color: var(--color-secondary-1);
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}

.contact-button {
  background: var(--color-secondary-2);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 8px;
}

.contact-button:hover {
  background: var(--color-accent-1);
  color: var(--color-secondary-1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 217, 100, 0.3);
}

footer {
  padding: 24px 0 20px 0;
  text-align: center;
  color: var(--color-secondary-1);
  font-size: 1rem;
}

section {
  margin-bottom: var(--spacing);
}

/* RESPONSIVE DESIGN */

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
  .nav-content {
    padding: 12px 20px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }
  .hero-right {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .hero-right h1 {
    font-size: 2.4rem;
  }
  .brand-indicator {
    flex-direction: row;
    gap: 8px;
  }
  .brand-text {
    margin-right: 4px;
  }
  .ragtime-logo {
    height: 56px;
  }
}

@media (max-width: 700px) {
  .hero-right h1 {
    font-size: 2rem;
  }
  .benefits h2 {
    font-size: 1.8rem;
  }
  .how-header h2 {
    font-size: 1.8rem;
  }
  .pricing h2 {
    font-size: 1.8rem;
  }

  .benefits {
    padding: 60px 0;
  }

  .how-it-works {
    padding: 60px 0;
  }

  .pricing {
    padding: 60px 0;
  }
}

@media (max-width: 600px) {
  * {
    box-sizing: border-box;
  }

  .hamburger {
    display: flex;
  }

  .nav-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    border-bottom: 1px solid rgba(93, 95, 239, 0.2);
  }

  .nav-content.active {
    max-height: 600px;
    overflow-y: auto;
    visibility: visible;
  }

  nav a {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .hero-content {
    gap: 16px;
    padding: 0 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-icon-container {
    width: 240px;
    height: 240px;
  }

  .hero-right {
    max-width: 100%;
    flex: 1;
    min-width: 250px;
  }

  .hero-content {
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-left {
    gap: 12px;
    flex: 0 0 100%;
    max-width: 100%;
    max-height: 300px;
    display: none;
  }

  .hero-icon-container {
    width: 240px;
    height: 240px;
  }

  .whatsapp-frame {
    max-width: 80%;
    width: 80%;
    max-height: 250px;
  }

  .whatsapp-content {
    min-height: 180px;
  }

  .brand-indicator {
    padding: 6px 10px;
  }

  .brand-text {
    font-size: 0.7rem;
  }

  .ragtime-logo {
    height: 52px;
  }

  .hero-right {
    min-width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    width: 100%;
  }

  .hero-right-content {
    flex-direction: row;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
  }

  .hero-right h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .hero-tagline {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .hero-description {
    font-size: 0.8rem;
    line-height: 1.3;
    flex: 1;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 10px 18px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .qr-placeholder {
    width: 60px;
    height: 60px;
  }

  .hero-cta-group {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    width: 100%;
  }

  .qr-section {
    width: auto;
    flex-shrink: 0;
    margin-top: 0;
    padding: 8px 12px;
    gap: 4px;
    display: none;
  }

  .qr-label {
    font-size: 0.7rem;
    display: none;
  }

  .benefits-grid {
    gap: 20px;
  }

  .steps-grid {
    gap: 20px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-icon-container {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .logo-byline {
    font-size: 0.6rem;
  }

  .nav-content {
    padding: 16px 20px;
  }

  .nav-content.active {
    max-height: 550px;
  }

  nav a {
    font-size: 0.9rem;
    padding: 10px 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .hero-content {
    gap: 16px;
  }

  .hero-left {
    gap: 12px;
  }

  .hero-icon-container {
    width: 200px;
    height: 200px;
  }

  .brand-indicator {
    padding: 6px 10px;
  }

  .brand-text {
    font-size: 0.65rem;
  }

  .ragtime-logo {
    height: 48px;
  }

  .qr-placeholder {
    width: 80px;
    height: 80px;
  }

  .hero-right h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 12px 20px;
    min-height: 44px;
  }

  .benefit-card {
    padding: 24px 18px;
  }

  .benefit-card h3 {
    font-size: 1.1rem;
  }

  .step-card {
    padding: 24px 18px;
  }

  .step-card h3 {
    font-size: 1.1rem;
  }

  .pricing {
    padding: 60px 0;
  }

  .pricing h2 {
    font-size: 1.8rem;
  }

  .pricing-card {
    padding: 32px 24px;
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .amount {
    font-size: 2.2rem;
  }

  .contact {
    padding: 60px 0;
  }

  .contact h2 {
    font-size: 1.8rem;
  }

  .contact-method {
    padding: 24px 20px;
  }

  .testimonials h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .nav-wrapper {
    padding: 10px 12px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-byline {
    font-size: 0.55rem;
  }

  .nav-content {
    padding: 12px 16px;
    gap: 8px;
  }

  .nav-content.active {
    max-height: 500px;
  }

  nav a {
    font-size: 0.8rem;
    padding: 8px 10px;
    min-height: 40px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .hero-content {
    gap: 16px;
    padding: 0 8px;
  }

  .hero-right h1 {
    font-size: 1.4rem;
    line-height: 1.25;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cta-button {
    font-size: 0.85rem;
    padding: 11px 18px;
    min-height: 40px;
  }

  .hero-content {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-left {
    gap: 12px;
  }

  .hero-icon-container {
    width: 160px;
    height: 160px;
  }

  .brand-indicator {
    padding: 5px 8px;
  }

  .brand-text {
    font-size: 0.6rem;
  }

  .ragtime-logo {
    height: 44px;
  }

  .hero-right {
    min-width: 100%;
  }

  .hero-right h1 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .hero-tagline {
    font-size: 0.8rem;
  }

  .hero-description {
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0 0 8px 0;
  }

  .cta-button {
    font-size: 0.8rem;
    padding: 10px 16px;
    min-height: 36px;
  }

  .qr-label {
    font-size: 0.75rem;
  }

  .qr-placeholder {
    width: 120px;
    height: 120px;
  }

  .qr-section {
    padding: 16px;
    margin-top: 16px;
  }

  .qr-label {
    font-size: 0.8rem;
  }

  .qr-placeholder {
    width: 110px;
    height: 110px;
  }

  .benefits h2,
  .how-header h2,
  .pricing h2 {
    font-size: 1.5rem;
  }

  .benefit-icon {
    font-size: 1.8rem;
  }

  .benefit-card {
    padding: 18px 14px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card p {
    font-size: 0.8rem;
  }

  .step-card {
    padding: 18px 14px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
  }

  .step-card h3 {
    font-size: 1rem;
  }

  .step-card p {
    font-size: 0.8rem;
  }

  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-text {
    font-size: 0.85rem;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-role {
    font-size: 0.75rem;
  }

  .contact h2 {
    font-size: 1.5rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-method {
    padding: 18px 14px;
  }

  .contact-method h4 {
    font-size: 1rem;
  }

  .contact-method p {
    font-size: 0.8rem;
  }

  .contact-button {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .pricing-header h3 {
    font-size: 1.3rem;
  }

  .pricing-period {
    font-size: 0.85rem;
  }

  .amount {
    font-size: 2rem;
  }

  .currency {
    font-size: 1rem;
  }

  .pricing-features li {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  section {
    margin-bottom: 20px;
  }

  .benefits {
    padding: 48px 0;
  }

  .how-it-works {
    padding: 48px 0;
  }

  .testimonials {
    padding: 48px 0;
    margin: 32px 0;
  }
}
