/** Shopify CDN: Minification failed

Line 2715:4 Unexpected "}"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bundles-grid (INDEX:4, SCOPED:FALSE) */
.bundles-grid-section {
    padding: 140px 24px 80px;
    background: #ffffff;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  /* Reusing generic section classes slightly modified */
  .section-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin-inline: auto;
  }

  .bundle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
  }

  .bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
  }

  .bundle-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
  }

  .bundle-media img,
  .bundle-media svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .bundle-card:hover .bundle-media img {
    transform: scale(1.05);
  }

  .savings-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .bundle-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3b82f6;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
  }

  .bundle-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .bundle-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  .bundle-title a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s;
  }
  
  .bundle-title a:hover {
    color: #2563eb;
  }

  .bundle-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  
  .feature-item svg {
    color: #10b981;
    flex-shrink: 0;
  }

  .bundle-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
  }

  .bundle-price-container {
    display: flex;
    flex-direction: column;
  }

  .bundle-current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
  }

  .bundle-compare-price {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
    margin-top: 0.25rem;
  }

  .bundle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0f172a;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }

  .bundle-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  @media (max-width: 768px) {
    .bundles-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
/* END_SECTION:bundles-grid */

/* START_SECTION:cart (INDEX:5, SCOPED:FALSE) */
.cart-page {
    background: #fafbfc;
    min-height: calc(100vh - 200px);
    padding: 100px 0 80px;
  }

  .cart-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Cart Header */
  .cart-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .cart-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
  }

  .cart-subtitle {
    color: #6b7280;
    font-size: 1.0625rem;
    margin: 0;
  }

  /* Cart Layout */
  .cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
  }

  /* Cart Items */
  .cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cart-item-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: border-color 0.2s;
  }

  .cart-item-card:hover {
    border-color: #d1d5db;
  }

  .item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
  }

  .item-image img,
  .item-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .item-details {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
  }

  .item-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
  }

  .item-label {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    width: fit-content;
  }

  .item-variant {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
  }

  .item-actions {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }

  .item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
  }

  .remove-btn {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
  }

  .remove-btn:hover {
    color: #ef4444;
  }

  /* Order Summary */
  .order-summary {
    position: sticky;
    top: 100px;
  }

  .summary-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
  }

  .summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.5rem 0;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #6b7280;
    font-size: 0.9375rem;
  }

  .summary-value {
    color: #000000;
    font-weight: 600;
  }

  .summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
  }

  .total-row {
    padding: 1rem 0 0 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
  }

  .summary-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
  }

  .checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 1.5rem;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .checkout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .checkout-btn svg {
    transition: transform 0.2s;
  }

  .checkout-btn:hover svg {
    transform: translateX(2px);
  }

  .instant-download-text {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.75rem 0 1.5rem;
  }

  .trust-signals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #6b7280;
    font-size: 0.875rem;
  }

  .trust-item svg {
    color: #10b981;
    flex-shrink: 0;
  }

  /* Cart Features */
  .cart-features {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
  }

  .features-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 1.25rem 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .feature-item svg {
    color: #2563eb;
  }

  .feature-item span {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
  }

  /* Empty Cart State */
  .empty-cart {
    text-align: center;
    padding: 80px 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .empty-cart svg {
    color: #d1d5db;
    margin-bottom: 2rem;
  }

  .empty-cart h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem 0;
  }

  .empty-cart p {
    color: #6b7280;
    font-size: 1.0625rem;
    margin: 0 0 2rem 0;
    line-height: 1.6;
  }

  .browse-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .browse-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .cart-layout {
      grid-template-columns: 1fr;
    }

    .order-summary {
      position: static;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .feature-item {
      flex-direction: row;
      justify-content: flex-start;
      text-align: left;
    }
  }

  @media (max-width: 640px) {
    .cart-page {
      padding: 80px 0 60px;
    }

    .cart-container {
      padding: 0 1.5rem;
    }

    .cart-title {
      font-size: 2rem;
    }

    .cart-item-card {
      grid-template-columns: 60px 1fr;
      gap: 1rem;
    }

    .item-image {
      width: 60px;
      height: 60px;
    }

    .item-actions {
      grid-column: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }
/* END_SECTION:cart */

/* START_SECTION:collection (INDEX:6, SCOPED:FALSE) */
.collection-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
  }

  .collection-hero {
    position: relative;
    padding: 120px 24px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
  }

  .collection-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .collection-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 5;
    pointer-events: none;
  }

  .collection-hero .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .collection-hero .glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
  }

  .collection-hero .glow-1 { top: -20%; left: -10%; }
  .collection-hero .glow-2 { bottom: -20%; right: -10%; }
  .collection-hero .glow-3 { top: 40%; left: 50%; transform: translate(-50%, -50%); width: 800px; opacity: 0.5; }

  .collection-hero-content {
    max-width: 1280px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 10;
  }

  .breadcrumbs {
    font-size: 0.875rem;
    color: var(--color-text-dimmed);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .breadcrumbs a {
    color: var(--color-text-dimmed);
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumbs a:hover {
    color: var(--color-primary);
  }

  .collection-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  }

  .collection-description {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    max-width: 700px;
    margin-inline: auto;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .collection-stats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #ffffff;
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .collection-main {
    padding: 40px 24px 100px;
  }

  .collection-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  /* Reuse product grid styles from homepage */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 60px;
  }

  .product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
  }

  .product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
  }

  .product-card-link {
    text-decoration: none;
    display: block;
  }

  .product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8fafc;
  }

  .product-card-image img,
  .product-card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .product-card:hover .product-card-image img,
  .product-card:hover .product-card-image svg {
    transform: scale(1.05);
  }

  .product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .product-card-content {
    padding: 1rem;
  }

  .product-title {
    font-size: 0.9375rem !important;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    color: var(--color-heading);
  }

  .product-price {
    font-size: 0.875rem !important;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  .btn-card {
    display: block;
    width: 100%;
    padding: 0.75rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.2);
  }

  .btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
  }

  .pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--color-heading);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
  }

  .pagination-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
  }

  .pagination-numbers {
    display: flex;
    gap: 0.5rem;
  }

  .pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: white;
    color: var(--color-heading);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
  }

  .pagination-number:hover {
    background: var(--color-primary-soft);
    border-color: var(--color-primary);
  }

  .pagination-number.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
  }

  /* Empty State */
  .empty-collection {
    text-align: center;
    padding: 80px 24px;
  }

  .empty-collection svg {
    color: var(--color-text-dimmed);
    margin-bottom: 2rem;
    opacity: 0.5;
  }

  .empty-collection h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
  }

  .empty-collection p {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    margin-bottom: 2rem;
  }

  .btn-primary {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  @media (max-width: 768px) {
    .collection-hero {
      padding: 60px 24px 40px;
    }

    .product-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1rem;
    }

    .pagination {
      flex-direction: column;
    }

    .pagination-numbers {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  /* Bundles Grid Overrides */
  .bundles-hero {
    position: relative;
    padding: 120px 24px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
    text-align: center;
  }

  .bundles-hero .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .bundles-hero .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5rem;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 5;
    pointer-events: none;
  }

  .bundles-hero .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .bundles-hero .glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
  }

  .bundles-hero .glow-1 { top: -20%; left: -10%; }
  .bundles-hero .glow-2 { bottom: -20%; right: -10%; }
  .bundles-hero .glow-3 { top: 40%; left: 50%; transform: translate(-50%, -50%); width: 800px; opacity: 0.5; }

  .bundles-grid-section {
    padding: 0px 24px 80px;
    background: #ffffff;
  }

  .section-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: #ffffff;
    color: #2563eb;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
  }

  .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
    text-align: center;
  }

  .bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin-inline: auto;
  }

  .bundle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .bundle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
  }

  .bundle-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f1f5f9;
  }

  .bundle-card:hover .bundle-media img {
    transform: scale(1.05);
  }

  .savings-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #10b981;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    z-index: 10;
  }
  
  .bundle-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3b82f6;
    color: white;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    z-index: 10;
  }

  .bundle-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .bundle-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
  }

  .bundle-title a {
    text-decoration: none;
    color: #0f172a;
    transition: color 0.2s;
  }
  
  .bundle-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.9375rem;
  }
  
  .feature-item svg {
    color: #10b981;
    flex-shrink: 0;
  }

  .bundle-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
  }

  .bundle-price-container {
    display: flex;
    flex-direction: column;
  }

  .bundle-current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
  }

  .bundle-compare-price {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: line-through;
  }

  .bundle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0f172a;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.2s;
  }

  .bundle-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
  }

  @media (max-width: 768px) {
    .bundles-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Scroll Reveal Classes */
  .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .reveal-item.active-reveal {
    opacity: 1;
    transform: translateY(0);
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7, SCOPED:FALSE) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:cta-section (INDEX:8, SCOPED:FALSE) */
.cta-section {
    background: var(--gradient-accent);
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  }

  .cta-container {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--color-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .btn-cta-primary svg {
    transition: transform 0.3s;
  }

  .btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  .btn-cta-primary:hover svg {
    transform: translateX(4px);
  }

  .cta-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  @media (max-width: 768px) {
    .cta-section {
      padding: 60px 20px;
    }

    .cta-content {
      gap: 1.5rem;
    }

    .cta-title {
      font-size: clamp(1.75rem, 8vw, 2.25rem);
      padding: 0 10px;
    }

    .cta-subtitle {
      font-size: 1rem;
      max-width: 300px;
    }

    .btn-cta-primary {
      width: 100%;
      justify-content: center;
      padding: 1.125rem 2rem;
    }

    .cta-guarantee {
      flex-direction: column;
      text-align: center;
      border-radius: 20px;
      padding: 1.25rem;
    }
  }
/* END_SECTION:cta-section */

/* START_SECTION:custom-section (INDEX:9, SCOPED:FALSE) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:digital-product-grid (INDEX:10, SCOPED:FALSE) */
.product-grid-section {
    padding: 20px 24px 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--page-width);
    margin-inline: auto;
  }

  @media (max-width: 1024px) {
    .product-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .product-grid-section {
      padding: 60px 20px 40px;
    }
    .section-header {
      margin-bottom: 40px;
    }
    .section-title {
      font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    .product-title {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 480px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  }

  .product-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
  }

  .product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(59, 130, 246, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }

  .product-card:hover::before {
    opacity: 1;
  }

  .product-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
  }

  .product-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f8fafc;
  }

  .product-card-image img, 
  .product-card-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
  }

  .product-card:hover .product-card-image img {
    transform: scale(1.05);
  }

  .product-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.95) 0%, rgba(37, 99, 235, 0.95) 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .product-card-content {
    padding: 1rem;
  }

  .product-title {
    font-size: 0.9375rem !important;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
  }

  .product-title a {
    text-decoration: none;
    color: var(--color-heading);
    transition: color 0.2s;
  }

  .product-title a:hover {
    color: var(--color-primary);
  }

  .product-price {
    font-size: 0.875rem !important;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  .btn-card {
    display: block;
    width: 100%;
    padding: 0.875rem;
    text-align: center;
    background: #f8fafc;
    color: var(--color-heading);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-base);
    border: 1px solid #e2e8f0;
    cursor: pointer;
  }

  .btn-card:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
  }

  .placeholder-svg {
    background: #f1f5f9;
    fill: #94a3b8;
  }

  /* View All Button Styling */
  .view-all-container {
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }

  .btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: 0.5s;
  }

  .btn-view-all:hover::before {
    left: 100%;
  }

  .btn-view-all:hover {
    background: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .btn-view-all svg {
    transition: transform 0.3s ease;
  }

  .btn-view-all:hover svg {
    transform: translateX(5px);
  }

  .btn-view-all span {
    position: relative;
    z-index: 1;
  }

  /* Reveal Animation */
  .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .reveal-item.active-reveal {
    opacity: 1;
    transform: translateY(0);
  }
/* END_SECTION:digital-product-grid */

/* START_SECTION:features-section (INDEX:11, SCOPED:FALSE) */
.features-section {
    background: white;
    padding: 100px 24px 0;
    border-top: 1px solid #f1f5f9;
  }

  .features-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .section-intro {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
  }

  .feature-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .feature-icon-container {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 16px;
    transition: all 0.3s ease;
  }

  .feature-item:hover .feature-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
  }

  .feature-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
  }

  .feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .feature-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
  }

  @media (max-width: 768px) {
    .features-section {
      padding: 80px 20px 0;
    }

    .section-intro {
      margin-bottom: 50px;
    }

    .section-title {
      font-size: 2.25rem;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .feature-item {
      padding: 1.5rem;
    }

    .feature-title {
      font-size: 1.25rem;
    }
  }
/* END_SECTION:features-section */

/* START_SECTION:footer (INDEX:12, SCOPED:FALSE) */
.site-footer {
    background: #fafbfc;
    border-top: 1px solid #e5e7eb;
    padding: 80px 0 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* Footer Columns */
  .footer-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 60px;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  /* Brand Column */
  .brand-column {
    gap: 0.75rem;
  }

  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }

  .brand-description {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
  }

  .trust-line {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
  }

  /* Footer Headings */
  .footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem 0;
  }

  /* Footer Links */
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }

  .footer-links li {
    margin: 0;
  }

  .footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
  }

  .footer-links a:hover {
    color: #2563eb;
  }

  /* Footer Bottom */
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
  }

  .footer-copyright p {
    margin: 0;
    color: #9ca3af;
    font-size: 0.875rem;
  }

  .footer-social {
    display: flex;
    gap: 1rem;
  }

  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #6b7280;
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  .footer-social a:hover {
    color: #2563eb;
    background: #f3f4f6;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .footer-columns {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }
  }

  @media (max-width: 640px) {
    .site-footer {
      padding: 60px 0 30px;
    }

    .footer-container {
      padding: 0 1.5rem;
    }

    .footer-columns {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      margin-bottom: 40px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 1.5rem;
      padding-top: 30px;
    }

    .footer-copyright {
      text-align: center;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:hello-world (INDEX:14, SCOPED:FALSE) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-animated (INDEX:15, SCOPED:FALSE) */
.hero-animated {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 120px 24px 80px;
  }

  .hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15rem;
    background: linear-gradient(to bottom, transparent, #ffffff);
    z-index: 5;
    pointer-events: none;
  }

  .grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
      linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
  }

  .glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
  }

  .glow-1 {
    top: -30%;
    left: -20%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  }

  .glow-2 {
    bottom: -30%;
    right: -20%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  }

  .glow-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0.6;
  }

  @keyframes floating {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8%, 12%) scale(1.05); }
    100% { transform: translate(-4%, -8%) scale(0.95); }
  }

  .hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    animation: fadeInUp 1s ease-out;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
  }

  .hero-badge svg {
    width: 16px;
    height: 16px;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--color-text-dimmed);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 540px;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
  }

  .stat-item {
    text-align: left;
  }

  .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-dimmed);
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 1rem;
    border: none;
    cursor: pointer;
  }

  .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
  }

  .btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-lg);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  }

  .btn-primary:hover svg {
    transform: translateX(4px);
  }

  .btn-secondary {
    background: white;
    color: var(--color-heading);
    border: 1px solid #e2e8f0;
  }

  .btn-secondary:hover {
    background: #f8fafc;
    border-color: var(--color-primary);
  }

  .hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1.2s ease-out 0.3s both;
  }

  .visual-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .visual-centerpiece {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    animation: pulse 3s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
  }

  .floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #f1f5f9;
    min-width: 200px;
    animation: float 6s ease-in-out infinite;
  }

  .card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
  }

  .card-2 {
    top: 45%;
    right: 0;
    animation-delay: -2s;
  }

  .card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: -4s;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .card-title {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
  }

  .card-desc {
    font-size: 0.875rem;
    color: var(--color-text-dimmed);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @media (max-width: 1024px) {
    .hero-wrapper {
      grid-template-columns: 1fr;
      gap: 3rem;
      text-align: center;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-visual {
      height: 450px;
    }

    .hero-stats {
      justify-content: center;
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .hero-animated {
      padding: 100px 20px 60px;
      min-height: auto;
    }

    .hero-title {
      font-size: clamp(2rem, 8vw, 2.25rem);
      margin-bottom: 1rem;
      padding: 0 10px;
    }

    .hero-subtitle {
      font-size: 1rem;
      margin-inline: auto;
      max-width: 320px;
    }

    .btn {
      width: 100%;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      padding: 1.5rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.5);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 1.75rem;
    }

    .hero-visual {
      height: 350px;
    }

    .floating-card {
      padding: 1rem;
      min-width: 160px;
    }

    .card-1 { top: 5%; }
    .card-2 { top: 40%; }
    .card-3 { display: none; } /* Hide one card to reduce clutter on mobile */
  }

  @media (max-width: 480px) {
    .hero-animated {
      padding: 80px 15px 40px;
    }

    .hero-title {
      font-size: 1.875rem;
    }
    
    .hero-stats {
      grid-template-columns: 1fr;
      gap: 0.75rem;
      padding: 1.25rem;
    }

    .stat-number {
      font-size: 1.5rem;
    }
  }

  /* Scroll Reveal Classes */
  .reveal-item, .reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .reveal-card {
    transform: scale(0.9) translateY(40px);
  }

  .active-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Centerpiece special animation */
  .visual-centerpiece {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .visual-centerpiece.active-reveal {
    opacity: 1;
    transform: scale(1);
  }
/* END_SECTION:hero-animated */

/* START_SECTION:page-about (INDEX:16, SCOPED:FALSE) */
.page-content {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
  }

  .content-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin: 2rem 0 1rem 0;
  }

  .content-section h2:first-child {
    margin-top: 0;
  }

  .content-section p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .content-section ul {
    list-style: none;
    padding: 0;
  }

  .content-section ul li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .page-content {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .content-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-about */

/* START_SECTION:page-contact (INDEX:17, SCOPED:FALSE) */
.page-content {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
  }

    .contact-grid {
      grid-template-columns: 1fr;
      max-width: 800px;
      margin: 0 auto;
      gap: 3rem;
    }

    .contact-info {
      text-align: center;
      border: none;
      background: transparent;
      padding: 0;
      margin-bottom: 2rem;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 1rem;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .contact-info p {
      color: #64748b;
      font-size: 1.125rem;
      line-height: 1.6;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-methods {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .contact-method {
      flex-direction: column;
      align-items: center;
      text-align: center;
      background: white;
      padding: 1.5rem;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      flex: 1;
      min-width: 250px;
    }

    .contact-method svg {
      margin-top: 0;
      margin-bottom: 0.5rem;
      width: 32px;
      height: 32px;
    }

    .contact-form-container {
      padding: 3rem;
      box-shadow: var(--shadow-lg);
    }
    
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background: #25D366;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.2s;
      box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
    }

    .whatsapp-btn:hover {
      background: #128C7E;
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
    }
    
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
      padding: 1rem 1.25rem;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      font-size: 1rem;
      background: #f8fafc;
      transition: all 0.2s ease;
      font-family: inherit;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #94a3b8;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #2563eb;
      background: white;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
      transform: translateY(-1px);
    }
    
    .contact-form-container {
      background: white;
      border-radius: 24px;
      padding: 3.5rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid rgba(255, 255, 255, 0.5);
      position: relative;
      overflow: hidden;
    }

    /* Decorative gradient accent */
    .contact-form-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #2563eb, #7c3aed);
    }

    .submit-btn {
      width: 100%;
      padding: 1.25rem;
      background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.125rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
      margin-top: 1rem;
      letter-spacing: 0.025em;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.15), 0 4px 6px -2px rgba(15, 23, 42, 0.1);
      background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    }

    .submit-btn:active {
      transform: translateY(0);
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .contact-form-container {
        padding: 2rem;
      }

      .contact-grid {
        gap: 2rem;
      }
    }
/* END_SECTION:page-contact */

/* START_SECTION:page-faqs (INDEX:18, SCOPED:FALSE) */
.page-content {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 80px;
  }

  .faq-category {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .faq-category h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
  }

  .faq-item {
    margin-bottom: 2rem;
  }

  .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
  }

  .faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
  }

  .contact-cta {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
  }

  .contact-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
  }

  .contact-cta p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
  }

  .cta-button {
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: #000000;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 768px) {
    .page-content {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .faq-category {
      padding: 2rem;
    }

    .contact-cta {
      padding: 2rem;
    }
  }
/* END_SECTION:page-faqs */

/* START_SECTION:page-license (INDEX:19, SCOPED:FALSE) */
.legal-page {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1rem;
    color: #9ca3af;
  }

  .content-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1rem 0;
  }

  .content-section h2:first-child {
    margin-top: 0;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .content-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .legal-page {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .content-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-license */

/* START_SECTION:page-privacy (INDEX:20, SCOPED:FALSE) */
.legal-page {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1rem;
    color: #9ca3af;
  }

  .content-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1rem 0;
  }

  .content-section h2:first-child {
    margin-top: 0;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .content-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .legal-page {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .content-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-privacy */

/* START_SECTION:page-refund (INDEX:21, SCOPED:FALSE) */
.legal-page {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
  }

  .content-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1rem 0;
  }

  .content-section h2:first-child {
    margin-top: 0;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .content-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .legal-page {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .content-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-refund */

/* START_SECTION:page-support (INDEX:22, SCOPED:FALSE) */
.page-content {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
  }

  .support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 80px;
  }

  .support-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
  }

  .support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
  }

  .support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
  }

  .support-icon svg {
    color: #2563eb;
  }

  .support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
  }

  .support-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .support-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
  }

  .support-link:hover {
    color: #1d4ed8;
  }

  .faq-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
  }

  .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .faq-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
  }

  .faq-item p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
  }

  @media (max-width: 1024px) {
    .support-options {
      grid-template-columns: 1fr;
    }

    .faq-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .page-content {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .faq-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-support */

/* START_SECTION:page-terms (INDEX:23, SCOPED:FALSE) */
.legal-page {
    background: #fafbfc;
    min-height: 70vh;
    padding: 120px 24px 100px;
  }

  .page-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .page-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
  }

  .page-subtitle {
    font-size: 1rem;
    color: #9ca3af;
  }

  .content-section {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem;
  }

  .content-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 2.5rem 0 1rem 0;
  }

  .content-section h2:first-child {
    margin-top: 0;
  }

  .content-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 1.5rem;
  }

  .content-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
  }

  .content-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .content-section ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .legal-page {
      padding: 100px 24px 80px;
    }

    .page-title {
      font-size: 2rem;
    }

    .content-section {
      padding: 2rem;
    }
  }
/* END_SECTION:page-terms */

/* START_SECTION:pricing-section (INDEX:27, SCOPED:FALSE) */
.pricing-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
  }

  /* Background decoration */
  .pricing-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    z-index: 0;
  }

  .pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .pricing-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pricing-header p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
  }

  .pricing-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
  }

  .pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .pricing-content {
    padding: 3rem;
    text-align: center;
  }

  .pricing-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
  }

  .pricing-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 0.5rem;
    color: #0f172a;
  }

  .currency {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 4px;
  }

  .amount {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .period {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
    margin-left: 8px;
  }

  .pricing-tagline {
    color: #64748b;
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
  }

  .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    text-align: left;
  }

  .pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #334155;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
  }

  .pricing-features li svg {
    color: #2563eb;
    flex-shrink: 0;
  }

  .pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1.25rem;
    background: #0f172a;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 12px;
    transition: all 0.2s;
    margin-bottom: 1.5rem;
  }

  .pricing-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .pricing-guarantee {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
  }

  @media (max-width: 768px) {
    .pricing-header h2 {
      font-size: 2.25rem;
    }

    .pricing-content {
      padding: 2rem;
    }

    .amount {
      font-size: 3.5rem;
    }
  }
/* END_SECTION:pricing-section */

/* START_SECTION:product-faq (INDEX:28, SCOPED:FALSE) */
.product-faq-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .product-faq-container {
    max-width: 900px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
  }

  .faq-list {
    margin-bottom: 80px;
  }

  .faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-base);
  }

  .faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
  }

  .faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-heading);
    text-align: left;
    transition: var(--transition-base);
  }

  .faq-question:hover {
    color: var(--color-primary);
  }

  .faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--color-primary);
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
  }

  .faq-answer-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--color-text-dimmed);
    line-height: 1.7;
  }

  .still-have-questions {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, #ffffff 100%);
    border-radius: 24px;
    border: 1px solid #e2e8f0;
  }

  .still-have-questions h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
  }

  .still-have-questions p {
    color: var(--color-text-dimmed);
    margin-bottom: 1.5rem;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
  }

  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  @media (max-width: 768px) {
    .faq-question {
      padding: 1.25rem 1.5rem;
      font-size: 1rem;
    }

    .faq-answer-content {
      padding: 0 1.5rem 1.25rem 1.5rem;
    }
  }
/* END_SECTION:product-faq */

/* START_SECTION:product-features (INDEX:29, SCOPED:FALSE) */
.product-features-section {
    padding: 100px 24px;
    background: white;
  }

  .product-features-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.6;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 80px;
  }

  .feature-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
  }

  .feature-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
  }

  .feature-desc {
    color: var(--color-text-dimmed);
    line-height: 1.6;
  }

  .compatibility-section {
    background: linear-gradient(135deg, var(--color-primary-soft) 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
  }

  .compatibility-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 2rem;
  }

  .compatibility-items {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
  }

  .compat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1rem;
  }

  .compat-icon {
    font-size: 1.5rem;
  }

  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .compatibility-items {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
      max-width: 600px;
      margin-inline: auto;
    }
  }
/* END_SECTION:product-features */

/* START_SECTION:product-hero (INDEX:30, SCOPED:FALSE) */
.product-hero-section {
    padding: 120px 24px 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .product-hero-container {
    max-width: 1280px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  /* Product Gallery */
  .product-gallery {
    position: sticky;
    top: 100px;
    animation: fadeInLeft 0.8s ease-out;
  }

  .main-image-container {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
  }

  .main-product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.5s ease;
  }

  .main-image-container:hover .main-product-image {
    transform: scale(1.05);
  }

  .image-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: var(--bg-glass);
    backdrop-filter: var(--blur-glass);
    color: var(--color-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-sm);
  }

  .thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .thumbnail {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
    opacity: 0.6;
  }

  .thumbnail:hover,
  .thumbnail.active {
    border-color: var(--color-primary);
    opacity: 1;
    transform: translateY(-2px);
  }

  .thumbnail img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Product Details */
  .product-details {
    animation: fadeInRight 0.8s ease-out;
    padding-top: 10px;
  }

  .title-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }

  .product-hero-section .product-title {
    font-size: clamp(3rem, 5vw, 4rem) !important;
    font-weight: 800;
    color: #0f172a;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin: 0;
  }

  .product-badge-tag {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    position: relative;
    top: 2px;
  }

  .product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }

  .stars {
    display: flex;
    gap: 0.25rem;
  }

  .registration-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .write-review-link {
    font-size: 0.875rem;
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: var(--transition-base);
  }

  .write-review-link:hover {
    color: #1d4ed8;
    opacity: 0.8;
  }

  .rating-text {
    color: #1e293b;
    font-size: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }

  .review-count {
    color: #64748b;
    font-weight: 400;
  }

  .trust-micro {
    padding-left: 0.75rem;
    margin-left: 0.75rem;
    border-left: 2px solid #e2e8f0;
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
  }

  .product-price-block {
    margin-bottom: 2rem;
  }

  .price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .product-hero-section .product-price {
    font-size: 3.5rem !important;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .compare-price {
    font-size: 1.5rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
  }

  .savings-pill {
    background: #eff6ff;
    color: #2563eb;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .price-micro {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
  }

  .product-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 90%;
  }

  .trust-badges-inline {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #f1f5f9;
    margin-bottom: 2.5rem;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #334155;
    font-weight: 600;
  }

  .trust-icon-box {
    width: 28px;
    height: 28px;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
  }

  /* Form */
  .product-form-container {
    margin-bottom: 1.5rem;
  }

  .variant-selector,
  .quantity-selector {
    margin-bottom: 1.5rem;
  }

  .variant-selector label,
  .quantity-selector label {
    display: block;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
  }

  .variant-dropdown {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: var(--transition-base);
  }

  .variant-dropdown:focus {
    outline: none;
    border-color: var(--color-primary);
  }

  .quantity-input {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
  }

  .qty-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .qty-btn:hover {
    background: #f8fafc;
  }

  .qty-value {
    width: 60px;
    height: 48px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 700;
  }

  .add-to-cart-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
  }

  .add-to-cart-btn svg {
    width: 18px;
    height: 18px;
    opacity: 0.7;
  }

  .add-to-cart-btn:hover:not(:disabled) {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
  }

  .add-to-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #f1f5f9;
  }

  .shopify-payment-button {
    margin-top: 1rem;
  }

  .shopify-payment-button__button {
    border-radius: 12px !important;
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    padding: 1.75rem 2.5rem !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    color: white !important;
    border: none !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.75rem !important;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1), 0 20px 25px -5px rgba(15, 23, 42, 0.2), 0 10px 10px -5px rgba(15, 23, 42, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
  }

  .shopify-payment-button__button::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
  }

  .shopify-payment-button__button:hover:not([disabled]) {
    transform: translateY(-3px) !important;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1), 0 25px 30px -5px rgba(15, 23, 42, 0.3), 0 15px 15px -5px rgba(15, 23, 42, 0.2) !important;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%) !important;
  }
  
  /* Shine effect for primary button */
  .shopify-payment-button__button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: 0.6s;
    pointer-events: none;
  }
  
  .shopify-payment-button__button:hover::after {
    left: 100%;
  }

  .shopify-payment-button__button--unbranded {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  }
  .secure-checkout-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
  }

  .secure-checkout-badge svg {
    color: #0f172a;
    width: 16px;
    height: 16px;
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 1024px) {
    .product-hero-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .product-gallery {
      position: static;
    }

    .trust-badges-inline {
      flex-direction: column;
      gap: 1rem;
    }
  }
/* END_SECTION:product-hero */

/* START_SECTION:product-reviews (INDEX:31, SCOPED:FALSE) */
.product-reviews-section {
    padding: 100px 24px;
    background: white;
  }

  .product-reviews-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
  }

  .rating-summary {
    display: flex;
    justify-content: center;
  }

  .rating-score {
    text-align: center;
  }

  .score-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .score-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }

  .score-text {
    color: var(--color-text-dimmed);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .write-review-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  }

  .write-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    filter: brightness(1.1);
  }

  /* Review Form */
  .review-form-container {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0;
  }

  .review-form-container.active {
    max-height: 800px;
    margin-bottom: 4rem;
  }

  .review-form-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin-inline: auto;
  }

  .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .form-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
  }

  .form-header p {
    color: #64748b;
  }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
  }

  .form-group label {
    font-weight: 700;
    font-size: 0.875rem;
    color: #334155;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  }

  .form-rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .form-rating-stars input {
    display: none;
  }

  .form-rating-stars label {
    cursor: pointer;
    color: #e2e8f0;
    transition: color 0.2s;
  }

  .form-rating-stars input:checked ~ label,
  .form-rating-stars label:hover,
  .form-rating-stars label:hover ~ label {
    color: #f59e0b;
  }

  .form-actions .btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
  }

  .form-actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    filter: brightness(1.1);
  }

  .form-actions .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #94a3b8;
    box-shadow: none;
  }

  .btn-ghost {
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1.5px solid #e2e8f0;
    border-radius: 100px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    background: #f1f5f9;
    color: #0f172a;
  }

  .review-success-message {
    text-align: center;
    padding: 2rem 0;
  }

  .success-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 1.5rem;
  }

  .review-success-message h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .review-success-message p {
    color: #64748b;
    margin-bottom: 2rem;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .review-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
  }

  .review-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
  }

  .reviewer-info {
    display: flex;
    gap: 1rem;
  }

  .reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
  }

  .reviewer-name {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.25rem;
  }

  .review-date {
    font-size: 0.875rem;
    color: var(--color-text-dimmed);
  }

  .review-rating {
    display: flex;
    gap: 0.125rem;
  }

  .review-text {
    color: var(--color-text-dimmed);
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.875rem;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
  }

  @media (max-width: 1024px) {
    .reviews-grid {
      grid-template-columns: 1fr;
      max-width: 700px;
      margin-inline: auto;
    }
  }
/* END_SECTION:product-reviews */

/* START_SECTION:product-specs (INDEX:32, SCOPED:FALSE) */
.product-specs-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  }

  .product-specs-container {
    max-width: 1080px;
    margin-inline: auto;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -0.02em;
  }

  .tabs-container {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
  }

  .tab-buttons {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    background: #f8fafc;
  }

  .tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-dimmed);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
  }

  .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .tab-btn.active {
    color: var(--color-primary);
  }

  .tab-btn.active::after {
    transform: scaleX(1);
  }

  .tab-btn:hover {
    background: rgba(37, 99, 235, 0.05);
  }

  .tab-content-container {
    padding: 3rem;
  }

  .tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out;
  }

  .tab-content.active {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
  }

  .spec-label {
    font-weight: 700;
    color: var(--color-heading);
  }

  .spec-value {
    color: var(--color-text-dimmed);
  }

  .usage-content {
    color: var(--color-text-dimmed);
    line-height: 1.7;
  }

  .usage-content h3 {
    color: var(--color-heading);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .usage-content h3:first-child {
    margin-top: 0;
  }

  .usage-content ol,
  .usage-content ul {
    padding-left: 1.5rem;
  }

  .usage-content li {
    margin-bottom: 0.75rem;
  }

  .formats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .format-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 16px;
    transition: var(--transition-base);
  }

  .format-card:hover {
    transform: translateY(-4px);
    background: white;
    box-shadow: var(--shadow-md);
  }

  .format-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .format-card h4 {
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.5rem;
  }

  .format-card p {
    color: var(--color-text-dimmed);
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  @media (max-width: 1024px) {
    .specs-grid,
    .formats-grid {
      grid-template-columns: 1fr;
    }

    .tab-buttons {
      flex-direction: column;
    }
  }
/* END_SECTION:product-specs */

/* START_SECTION:related-products (INDEX:34, SCOPED:FALSE) */
.related-products-section {
    padding: 100px 24px;
    background: white;
    border-top: 1px solid #e2e8f0;
  }

  .related-products-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
  }

  .related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .related-product-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition-base);
    text-decoration: none;
    display: block;
  }

  .related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
  }

  .related-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
  }

  .related-product-image img,
  .related-product-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }

  .related-product-card:hover .related-product-image img,
  .related-product-card:hover .related-product-image svg {
    transform: scale(1.1);
  }

  .quick-view-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    opacity: 0;
    transition: var(--transition-base);
    white-space: nowrap;
  }

  .related-product-card:hover .quick-view-badge {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .related-product-info {
    padding: 1.5rem;
  }

  .related-product-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .related-product-rating {
    display: flex;
    gap: 0.125rem;
    margin-bottom: 0.75rem;
  }

  .related-product-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-primary);
  }

  .placeholder-card {
    pointer-events: none;
  }

  @media (max-width: 1024px) {
    .related-products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .related-products-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin-inline: auto;
    }
  }
/* END_SECTION:related-products */

/* START_SECTION:search (INDEX:35, SCOPED:FALSE) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:testimonials (INDEX:36, SCOPED:FALSE) */
.testimonials-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px 24px 100px;
  }

  .testimonials-container {
    max-width: 1280px;
    margin-inline: auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }

  .section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-dimmed);
    max-width: 600px;
    margin-inline: auto;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 80px;
  }

  .testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .stars {
    display: flex;
    gap: 0.25rem;
  }

  .quote {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-heading);
    margin: 0;
    flex: 1;
  }

  .author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
  }

  .author-name {
    font-weight: 700;
    color: var(--color-heading);
  }

  .author-role {
    font-size: 0.875rem;
    color: var(--color-text-dimmed);
  }

  .trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    text-align: center;
  }

  .indicator-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
  }

  .indicator-label {
    color: var(--color-text-dimmed);
    font-size: 0.9375rem;
  }

  @media (max-width: 1024px) {
    .testimonials-section {
      padding: 60px 20px 80px;
    }

    .section-header {
      margin-bottom: 40px;
    }

    .section-title {
      font-size: 2.25rem;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
      max-width: 100%;
      margin-inline: auto;
      gap: 1.5rem;
      margin-bottom: 50px;
    }

    .trust-indicators {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 2rem;
    }

    .indicator-value {
      font-size: 2rem;
    }
  }
/* END_SECTION:testimonials */

/* START_SECTION:updates-section (INDEX:37, SCOPED:FALSE) */
.updates-section {
    padding: 120px 24px;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
  }

  /* Abstract background shapes */
  .updates-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .updates-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .updates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
  }

  .updates-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .updates-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
  }

  .feature-pills {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.9375rem;
    color: #e2e8f0;
  }

  .pill svg {
    color: #60a5fa;
  }

  .action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s;
    font-size: 1.125rem;
  }

  .action-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
  }

  .visual-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
  }

  .code-snippet {
    background: #000;
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a5f3fc;
    margin-bottom: 1rem;
  }

  .code-snippet pre {
    margin: 0;
    white-space: pre-wrap;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    margin-bottom: 1rem;
  }
  .red { background: #ef4444; }
  .yellow { background: #f59e0b; }
  .green { background: #22c55e; }

  .floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 16px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 4s ease-in-out infinite;
  }

  .status-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @media (max-width: 1024px) {
    .updates-grid {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }

    .updates-content p,
    .pricing-header {
      margin-inline: auto;
    }
    
    .feature-pills {
      justify-content: center;
    }

    .visual-card {
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .updates-section {
      padding: 80px 24px;
    }
    .updates-content h2 {
      font-size: 2.25rem;
    }
  }
/* END_SECTION:updates-section */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:38, SCOPED:FALSE) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:39, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:41, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */