/** Shopify CDN: Minification failed

Line 7:1 Unexpected "<"
Line 568:2 Unexpected "<"

**/
 <style>
    /* ----- PREMIUM DTC FOUNDATION ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background-color: #f8f6f2;
      color: #2a2a28;
      line-height: 1.5;
      overflow-x: hidden;
    }
    
    .page {
      max-width: 1280px;
      margin: 0 auto;
      background-color: #ffffff;
      box-shadow: 0 0 50px rgba(0,0,0,0.02);
      position: relative;
    }
    
    /* ----- TYPOGRAPHY — calm, intentional, premium ----- */
    h1, h2, h3 {
      font-weight: 400;
      letter-spacing: -0.02em;
    }
    
    h1 {
      font-size: 3.2rem;
      font-weight: 450;
      line-height: 1.2;
      color: #1f3b3c;
      margin-bottom: 1.5rem;
    }
    
    h2 {
      font-size: 2.4rem;
      font-weight: 400;
      color: #1f3b3c;
      margin-bottom: 1.5rem;
    }
    
    h3 {
      font-size: 1.6rem;
      font-weight: 500;
      color: #1f3b3c;
      margin-bottom: 1rem;
    }
    
    .subhead {
      font-size: 1.25rem;
      color: #5b5b56;
      margin: 1rem 0 2rem;
      line-height: 1.5;
      font-weight: 350;
      max-width: 600px;
    }
    
    /* ----- BUTTONS — calm, no urgency tricks ----- */
    .btn-primary {
      display: inline-block;
      background-color: #1f3b3c;
      color: white;
      padding: 1rem 2.5rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 1.1rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      box-shadow: 0 8px 20px rgba(31,59,60,0.15);
      text-align: center;
      letter-spacing: 0.01em;
    }

    .btn-primary:hover {
      background-color: #2a4b4c;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(31,59,60,0.2);
    }
    
    .btn-secondary {
      display: inline-block;
      background: transparent;
      border: 1.5px solid #1f3b3c;
      color: #1f3b3c;
      padding: 0.9rem 2.2rem;
      border-radius: 40px;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .btn-secondary:hover {
      background: #f0f3f0;
      transform: translateY(-1px);
    }
    
    /* ----- QUIZ BADGE / SECONDARY CTA STYLE ----- */
    .quiz-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #eef3f0;
      padding: 0.6rem 1.5rem;
      border-radius: 40px;
      color: #1f3b3c;
      font-weight: 500;
      text-decoration: none;
      margin-top: 1rem;
      transition: all 0.2s ease;
    }
    
    .quiz-badge:hover {
      background: #e0e8e0;
      transform: translateY(-1px);
    }
    
    .quiz-badge i {
      font-size: 1.1rem;
    }
    
    /* ----- TRUST STRIP (calm, non‑badgy) ----- */
    .trust-strip {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2.5rem;
      padding: 1.2rem 2rem;
      background: #f9f8f6;
      border-top: 1px solid #eae6e0;
      border-bottom: 1px solid #eae6e0;
      font-size: 0.95rem;
      color: #3e3e3a;
      font-weight: 400;
    }
    
    .trust-strip span {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: opacity 0.2s ease;
    }
    
    .trust-strip span:hover {
      opacity: 0.8;
    }
    
    .trust-strip i {
      color: #1f3b3c;
      font-size: 1rem;
    }
    
    /* ----- SECTIONS — calm spacing ----- */
    .section {
      padding: 5rem 2rem;
      border-bottom: 1px solid #ece8e2;
      position: relative;
    }
    
    .section:last-child {
      border-bottom: none;
    }
    
    .section-title {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }
    
    .section-title h2 {
      margin-bottom: 0.5rem;
    }
    
    .section-title p {
      color: #5b5b56;
      font-size: 1.1rem;
    }
    
    /* ----- GRIDS ----- */
    .grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }
    
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    
    /* ----- HERO VISUAL (depth, calm) ----- */
    .hero-visual {
      background: #e9eae6;
      border-radius: 2rem;
      height: 500px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    }
    
    .hero-visual::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at center, rgba(31,59,60,0.08), transparent 60%);
      filter: blur(50px);
      z-index: 0;
    }
    
    .hero-visual img {
      position: relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 2rem;
      z-index: 2;
      transition: transform 0.8s ease;
    }
    
    .hero-visual:hover img {
      transform: scale(1.02);
    }
    
    /* ----- PRODUCT BADGE (for hero) ----- */
    .product-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(8px);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      font-size: 0.9rem;
      color: #1f3b3c;
      font-weight: 500;
      z-index: 3;
      border: 1px solid rgba(255,255,255,0.2);
    }
    
    /* ----- FEATURE CARDS (soft, minimal) ----- */
    .feature-card {
      text-align: center;
      padding: 2rem 1.5rem;
      background: #faf9f7;
      border-radius: 1.5rem;
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-4px);
      background: #ffffff;
      box-shadow: 0 15px 30px -10px rgba(31,59,60,0.1);
    }
    
    .feature-card i {
      font-size: 2.2rem;
      color: #1f3b3c;
      margin-bottom: 1.2rem;
      opacity: 0.9;
    }
    
    .feature-card h4 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 0.5rem;
    }
    
    .feature-card p {
      color: #5b5b56;
      font-size: 0.95rem;
    }
    
    /* ----- QUIZ SECTION (prominent, calm) ----- */
    .quiz-block {
      background: linear-gradient(145deg, #f4f2ed, #f0ede7);
      border-radius: 2rem;
      padding: 3.5rem;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 15px 30px -10px rgba(0,0,0,0.05);
    }
    
    .quiz-block h3 {
      font-size: 2rem;
      font-weight: 400;
    }
    
    .quiz-block .btn-primary {
      margin-top: 1.5rem;
    }
    
    /* ----- TESTIMONIAL CARDS (light, airy) ----- */
    .testimonial-card {
      background: rgba(255,255,255,0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0,0,0,0.03);
      border-radius: 1.5rem;
      padding: 2rem;
      transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
      transform: translateY(-6px);
      background: rgba(255,255,255,0.9);
      box-shadow: 0 20px 30px -10px rgba(31,59,60,0.1);
    }
    
    .testimonial-stars {
      color: #d4a373;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    
    .testimonial-text {
      font-size: 1rem;
      line-height: 1.5;
      color: #2d2a24;
      font-weight: 350;
      font-style: normal;
    }
    
    .testimonial-author {
      margin-top: 1.2rem;
      font-weight: 500;
      color: #1f3b3c;
    }
    
    /* ----- TRANSPARENCY BLOCK (high trust) ----- */
    .transparency-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      background: #f9f8f6;
      border-radius: 2rem;
      padding: 3rem;
    }
    
    .transparency-do h4, .transparency-dont h4 {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .transparency-do ul, .transparency-dont ul {
      list-style: none;
    }
    
    .transparency-do li, .transparency-dont li {
      margin-bottom: 1rem;
      display: flex;
      gap: 0.8rem;
      color: #3e3e3a;
    }
    
    .transparency-do i {
      color: #1f3b3c;
      width: 1.2rem;
    }
    
    .transparency-dont i {
      color: #a5a5a0;
      width: 1.2rem;
    }
    
    /* ----- INSTALLATION STEP ----- */
    .step-item {
      text-align: center;
      padding: 1.5rem;
    }
    
    .step-number {
      width: 56px;
      height: 56px;
      background: #e9e6e0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.2rem;
      font-weight: 500;
      font-size: 1.4rem;
      color: #1f3b3c;
      transition: all 0.3s ease;
    }
    
    .step-item:hover .step-number {
      background: #1f3b3c;
      color: white;
      transform: scale(1.05);
    }
    
    /* ----- TRUST BADGES (payment, guarantee) ----- */
    .trust-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
      padding: 1rem;
      background: #f9f8f6;
      border-radius: 60px;
    }
    
    .trust-badges span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #4a4a44;
      font-size: 0.9rem;
    }
    
    .trust-badges i {
      color: #1f3b3c;
      font-size: 1.2rem;
    }
    
    /* ----- STICKY CTA (mobile only, calm) ----- */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 1.5rem;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
      z-index: 9999;
      border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .sticky-cta-content {
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      gap: 1rem;
      align-items: center;
      justify-content: center;
    }
    
    .sticky-cta-button {
      background: #1f3b3c;
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 40px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
      flex: 1;
      text-align: center;
    }
    
    .sticky-cta-button:hover {
      background: #2a4b4c;
    }
    
    /* ----- FOOTER MICROCOPY ----- */
    .footer-brand {
      text-align: center;
      padding: 3rem 2rem;
      background: #f5f3f0;
      color: #4a4a44;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
    }
    
    .footer-brand strong {
      color: #1f3b3c;
      font-weight: 500;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 1.5rem 0;
    }
    
    .footer-links a {
      color: #5b5b56;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
      color: #1f3b3c;
    }
    
    /* ----- ANIMATIONS ----- */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-in {
      animation: fadeInUp 0.6s ease forwards;
    }
    
    /* ----- RESPONSIVE ----- */
    @media (max-width: 700px) {
      h1 { font-size: 2.4rem; }
      h2 { font-size: 2rem; }
      .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .section { padding: 3rem 1.5rem; }
      .trust-strip { 
        gap: 1rem; 
        justify-content: flex-start;
        padding: 1rem;
      }
      .hero-visual { height: 350px; }
      .quiz-block { padding: 2rem 1.5rem; }
      .transparency-grid { 
        grid-template-columns: 1fr;
        padding: 2rem;
      }
      .sticky-cta {
        display: block;
      }
      body {
        padding-bottom: 80px;
      }
      .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        border-radius: 30px;
      }
    }

    @media (max-width: 480px) {
      h1 { font-size: 2rem; }
      .hero-visual { height: 280px; }
      .btn-primary, .btn-secondary {
        width: 100%;
      }
    }
  </style>
</head>