/* Base styles */
:root {
    --primary: #6366f1;
    --accent: #4f46e5;
    --background: #ffffff;
    --foreground: #0f172a;
    --secondary: #f0f2f5;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.5;
  }
  
  /* Container and sections */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  @media (min-width: 768px) {
    .section {
      padding: 6rem 1rem;
    }
  }
  
  /* Navigation */
  nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    z-index: 50;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.25rem;
  }
  
  .logo-text {
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: opacity 0.2s;
  }
  
  .logo-text:hover {
    opacity: 0.8;
  }
  
  .logo-text span {
    font-weight: 300;
    margin: 0 0.25rem;
  }
  
  .nav-links {
    display: flex;
    gap: 1rem;
  }
  
  /* Buttons */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    background-color: var(--primary);
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
  }
  
  .btn-primary:hover {
    background-color: rgba(99, 102, 241, 0.9);
    transform: scale(1.02);
  }
  
  .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    background-color: white;
    border: 2px solid var(--primary);
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
  }
  
  .btn-secondary:hover {
    background-color: rgba(99, 102, 241, 0.05);
  }
  
  /* Hero section */
  .hero {
    padding-top: 8rem;
    background: linear-gradient(to bottom, var(--secondary), white);
  }
  
  .hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .hero-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  @media (min-width: 768px) {
    .hero-title {
      font-size: 3.75rem;
    }
  }
  
  .hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  @media (min-width: 640px) {
    .hero-buttons {
      flex-direction: row;
    }
  }
  
  .hero-text {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .hero-text {
      text-align: left;
    }
  }
  
  .hero-image {
    display: none;
  }
  
  @media (min-width: 768px) {
    .hero-image {
      display: block;
    }
    
    .hero-image img {
      border-radius: 1rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transition: transform 0.3s;
    }
    
    .hero-image img:hover {
      transform: scale(1.02);
    }
  }
  
  /* Shopify section */
  .shopify {
    background-color: white;
  }
  
  .shopify-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
  }
  
  .shopify-logo {
    height: 3rem;
    margin: 0 auto 1.5rem;
  }
  
  .shopify-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .shopify-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 1rem;
  }
  
  .shopify-note {
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
  }
  
  /* Features section */
  .features-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .features-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .features-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
  }
  
  .features-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  @media (min-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .features-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .features-cards {
    display: grid;
    gap: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }
  
  .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .feature-description {
    color: #4b5563;
  }
  
  /* Pricing section */
  .pricing {
    background-color: var(--secondary);
  }
  
  .pricing-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .pricing-image {
    order: 2;
  }
  
  .pricing-content {
    order: 1;
  }
  
  @media (min-width: 768px) {
    .pricing-image {
      order: 1;
    }
    
    .pricing-content {
      order: 2;
    }
  }
  
  .pricing-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .pricing-box {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  
  .pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .pricing-period {
    font-size: 1.5rem;
    color: #4b5563;
  }
  
  .pricing-note {
    color: #4b5563;
    margin-bottom: 1.5rem;
  }
  
  .pricing-features {
    list-style-type: none;
    margin-bottom: 2rem;
  }
  
  .pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .pricing-feature-icon {
    color: var(--primary);
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  
  /* CTA section */
  .cta {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
  }
  
  .cta-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
  }
  
  @media (min-width: 768px) {
    .cta-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .cta-text {
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .cta-text {
      text-align: left;
    }
  }
  
  .cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    background-color: white;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .cta-image {
    display: none;
  }
  
  @media (min-width: 768px) {
    .cta-image {
      display: block;
    }
    
    .cta-image img {
      border-radius: 1rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
  }
  
  /* Footer */
  .footer {
    padding: 2rem 0;
    background-color: white;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: #4b5563;
  }
  
  /* Animations */
  .fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.5s ease-out forwards;
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 0.3s ease-out forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  
  /* Utils */
  .hidden-mobile {
    display: none;
  }
  
  @media (min-width: 768px) {
    .hidden-mobile {
      display: block;
    }
  }
  
  img {
    max-width: 100%;
    height: auto;
  }

  .shopify-app-img {
    max-width: 300px;
  }
  
  /* Icons */
  .icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
  }