 
    /* ─────────────────────────────────────────
       TOKENS
    ───────────────────────────────────────── */
    :root {
      --orange:  #FF6B35;
      --coral:   #FF4E6A;
      --peach:   #FFB347;
      --light:   #FFF3EE;
      --ink:     #1C1C2E;
      --ink2:    #3D3D55;
      --muted:   #888899;
      --white:   #FFFFFF;
      --grad: linear-gradient(135deg, var(--peach) 0%, var(--orange) 45%, var(--coral) 100%);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Manrope', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* ─── BLOB UTILITY ──────────────────────── */
    .blob {
      position: absolute;
      border-radius: 50% 60% 40% 70% / 60% 40% 70% 50%;
      background: var(--grad);
      filter: blur(0px);
      pointer-events: none;
      z-index: 0;
    }
    .blob-soft {
      position: absolute;
      border-radius: 50%;
      background: var(--grad);
      filter: blur(60px);
      opacity: 0.12;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── TYPOGRAPHY ────────────────────────── */
    .display {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -0.02em;
    }
    .label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--orange);
    }

    /* ─── NAVBAR ────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 24px rgba(255,107,53,0.08); }
    .nav-inner {
      max-width: 1200px; margin: 0 auto;
      padding: 0 32px;
      height: 72px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .logo-icon {
      width: 40px; height: 40px;
      background: var(--grad);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; box-shadow: 0 6px 18px rgba(255,107,53,0.35);
    }
    .logo-text {
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 18px;
      color: var(--ink);
      line-height: 1;
    }
    .logo-sub {
      font-size: 9px;
      letter-spacing: 0.2em;
      color: var(--muted);
      font-weight: 600;
    }
    .nav-links {
      display: flex; align-items: center; gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px; font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      color: var(--ink2);
      position: relative;
      padding-bottom: 4px;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--grad);
      border-radius: 2px;
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--orange); }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a.active { color: var(--ink); font-weight: 700; }
    .nav-cta {
      background: var(--grad);
      color: white !important;
      padding: 10px 24px !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      box-shadow: 0 6px 20px rgba(255,107,53,0.35);
      transition: transform 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,107,53,0.45) !important; }
    .nav-cta::after { display: none !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
    .mobile-nav {
      display: none;
      background: white;
      padding: 20px 32px 28px;
      border-top: 1px solid rgba(0,0,0,0.06);
      flex-direction: column; gap: 18px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a { font-size: 15px; font-weight: 600; color: var(--ink2); text-decoration: none; }

    /* ─── SECTIONS COMMON ───────────────────── */
    section { position: relative; overflow: hidden; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

    /* ─── REVEAL ────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding-top: 72px;
      background: white;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      min-height: calc(100vh - 72px);
      padding: 60px 0;
    }
    .hero-left { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--light);
      border: 1px solid rgba(255,107,53,0.25);
      padding: 8px 16px; border-radius: 50px;
      margin-bottom: 28px;
      font-size: 12px; font-weight: 700;
      color: var(--orange);
      letter-spacing: 0.05em;
    }
    .hero-title {
      font-size: clamp(44px, 5.5vw, 72px);
      margin-bottom: 22px;
      color: var(--ink);
    }
    .hero-title .highlight {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-desc {
      font-size: 17px;
      line-height: 1.78;
      color: var(--muted);
      max-width: 440px;
      margin-bottom: 40px;
      font-weight: 400;
    }
    .hero-btns {
      display: flex; flex-wrap: wrap; gap: 14px;
      margin-bottom: 52px;
    }
    .btn-primary {
      background: var(--grad);
      color: white;
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 14px; font-weight: 700;
      text-decoration: none;
      box-shadow: 0 10px 32px rgba(255,107,53,0.35);
      transition: transform 0.25s, box-shadow 0.25s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255,107,53,0.45); }
    .btn-outline {
      border: 2px solid rgba(28,28,46,0.2);
      color: var(--ink);
      padding: 14px 34px;
      border-radius: 50px;
      font-size: 14px; font-weight: 700;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
    .hero-stats {
      display: flex; gap: 40px; flex-wrap: wrap;
    }
    .hero-stat-val {
      font-family: 'Fraunces', serif;
      font-size: 36px; font-weight: 900;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-stat-label {
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-top: 4px;
    }

    /* Hero right – blob + laptop */
    .hero-right {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      z-index: 1;
    }
    .hero-blob-main {
      position: absolute;
      width: 560px; height: 520px;
      background: var(--grad);
      border-radius: 42% 58% 65% 35% / 46% 54% 46% 54%;
      opacity: 0.92;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      animation: morphBlob 8s ease-in-out infinite;
      z-index: 0;
    }
    .hero-blob-small {
      position: absolute;
      width: 160px; height: 140px;
      background: var(--grad);
      border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
      opacity: 0.6;
      top: -20px; left: -30px;
      animation: morphBlob 6s ease-in-out infinite reverse;
      z-index: 0;
    }
    @keyframes morphBlob {
      0%, 100% { border-radius: 42% 58% 65% 35% / 46% 54% 46% 54%; }
      33%       { border-radius: 55% 45% 48% 52% / 38% 62% 38% 62%; }
      66%       { border-radius: 38% 62% 55% 45% / 56% 44% 56% 44%; }
    }
    /* gear decorations */
    .gear {
      position: absolute;
      opacity: 0.15;
      animation: spinGear 20s linear infinite;
      z-index: 1;
    }
    .gear-rev { animation-direction: reverse; }
    @keyframes spinGear {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .dots-pattern {
      position: absolute;
      opacity: 0.25;
      z-index: 1;
    }

    .laptop-wrap {
      position: relative; z-index: 2;
      animation: floatLaptop 5s ease-in-out infinite;
      filter: drop-shadow(0 30px 60px rgba(255,80,50,0.25));
    }
    @keyframes floatLaptop {
      0%, 100% { transform: translateY(0) rotate(-2deg); }
      50%       { transform: translateY(-18px) rotate(-2deg); }
    }

    /* ─────────────────────────────────────────
       BRANDS TICKER
    ───────────────────────────────────────── */
    .ticker-section {
      background: var(--light);
      border-top: 1px solid rgba(255,107,53,0.12);
      border-bottom: 1px solid rgba(255,107,53,0.12);
      padding: 18px 0;
      overflow: hidden;
    }
    .ticker-track {
      display: flex; gap: 0;
      animation: tickerAnim 5s linear infinite;
      white-space: nowrap;
    }
    @keyframes tickerAnim {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .ticker-item {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 0 36px;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--ink2);
    }
    .ticker-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
    }

    /* ─────────────────────────────────────────
       PRODUCTS
    ───────────────────────────────────────── */
    #products { padding: 120px 0; background: white; }
    .section-header { margin-bottom: 64px; }
    .section-header h2 {
      font-size: clamp(36px, 4.5vw, 58px);
      margin-top: 12px;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .product-card {
      border-radius: 24px;
      padding: 32px;
      border: 1.5px solid rgba(0,0,0,0.07);
      position: relative; overflow: hidden;
      transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), box-shadow 0.35s ease, border-color 0.25s;
      cursor: default;
      background: white;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 64px rgba(255,107,53,0.12);
      border-color: rgba(255,107,53,0.3);
    }
    .product-card.featured {
      background: var(--grad);
      border-color: transparent;
      color: white;
    }
    .product-card.featured .p-price,
    .product-card.featured .p-title,
    .product-card.featured .p-desc { color: white; }
    .product-card.featured .p-desc { opacity: 0.85; }
    .product-card.featured .p-tag { background: rgba(255,255,255,0.25); color: white; }
    .product-card.featured .p-link { background: white; color: var(--orange); }
    .card-icon {
      width: 60px; height: 60px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 26px;
      margin-bottom: 24px;
    }
    .card-icon-light { background: var(--light); }
    .card-icon-white { background: rgba(255,255,255,0.2); }
    .p-tag {
      display: inline-block;
      font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
      padding: 4px 12px; border-radius: 50px;
      background: var(--light);
      color: var(--orange);
      margin-bottom: 14px;
    }
    .p-title {
      font-size: 22px; font-weight: 800;
      color: var(--ink);
      margin-bottom: 10px;
      line-height: 1.25;
    }
    .p-desc {
      font-size: 14px; line-height: 1.7;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .p-price {
      font-family: 'Fraunces', serif;
      font-size: 30px; font-weight: 900;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .p-features {
      font-size: 12px; color: var(--muted);
      margin-bottom: 24px;
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .p-features span {
      background: var(--light);
      padding: 4px 10px; border-radius: 50px;
      font-weight: 600;
    }
    .product-card.featured .p-features span {
      background: rgba(255,255,255,0.2);
      color: white;
    }
    .p-link {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--grad);
      color: white;
      padding: 11px 24px; border-radius: 50px;
      font-size: 13px; font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .p-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.3); }

    /* ─────────────────────────────────────────
       ABOUT / WHY US
    ───────────────────────────────────────── */
    #about {
      padding: 120px 0;
      background: #FAFAFA;
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-visual { position: relative; }
    .about-blob-bg {
      position: absolute;
      width: 420px; height: 380px;
      background: var(--grad);
      opacity: 0.08;
      border-radius: 60% 40% 50% 60% / 50% 60% 40% 50%;
      top: -20px; left: -20px;
      animation: morphBlob 10s ease-in-out infinite;
    }
    .stats-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      position: relative; z-index: 1;
    }
    .stat-card {
      background: white;
      border-radius: 20px;
      padding: 28px 24px;
      border: 1.5px solid rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(255,107,53,0.1); }
    .stat-card.wide { grid-column: span 2; }
    .stat-card.orange { background: var(--grad); border-color: transparent; }
    .stat-card.orange .stat-val,
    .stat-card.orange .stat-lbl,
    .stat-card.orange p { color: white; }
    .stat-val {
      font-family: 'Fraunces', serif;
      font-size: 44px; font-weight: 900;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-card.orange .stat-val {
      background: none;
      -webkit-text-fill-color: white;
    }
    .stat-lbl {
      font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
      color: var(--muted); margin-top: 6px;
    }
    .about-text .label { margin-bottom: 14px; }
    .about-text h2 { margin-bottom: 22px; }
    .about-text p { font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 36px; }
    .usp-list { display: flex; flex-direction: column; gap: 16px; }
    .usp-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 20px; border-radius: 16px;
      background: white;
      border: 1.5px solid rgba(0,0,0,0.06);
      transition: border-color 0.25s, transform 0.25s;
    }
    .usp-item:hover { border-color: rgba(255,107,53,0.3); transform: translateX(4px); }
    .usp-icon {
      width: 42px; height: 42px; min-width: 42px;
      border-radius: 12px;
      background: var(--light);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .usp-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
    .usp-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─────────────────────────────────────────
       REVIEWS
    ───────────────────────────────────────── */
    #reviews { padding: 120px 0; background: white; }
    .rating-banner {
      display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
      margin-bottom: 64px;
      padding: 32px 40px;
      background: var(--light);
      border-radius: 24px;
      border: 1.5px solid rgba(255,107,53,0.15);
    }
    .rating-big {
      font-family: 'Fraunces', serif;
      font-size: 72px; font-weight: 900;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .rating-stars { font-size: 28px; color: #FFC107; letter-spacing: 3px; margin-bottom: 4px; }
    .rating-count { font-size: 14px; color: var(--muted); font-weight: 600; }
    .rating-divider { width: 1px; height: 60px; background: rgba(0,0,0,0.1); }
    .rating-award { display: flex; align-items: center; gap: 16px; }
    .award-icon { font-size: 42px; }
    .award-title { font-size: 16px; font-weight: 800; color: var(--ink); line-height: 1.2; }
    .award-sub { font-size: 13px; color: var(--muted); margin-top: 3px; }
    .reviews-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: white;
      border: 1.5px solid rgba(0,0,0,0.07);
      border-radius: 20px;
      padding: 28px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.25s;
    }
    .review-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(255,107,53,0.1);
      border-color: rgba(255,107,53,0.25);
    }
    .review-stars { font-size: 16px; color: #FFC107; margin-bottom: 14px; }
    .review-text { font-size: 14px; line-height: 1.75; color: var(--ink2); margin-bottom: 22px; font-style: italic; }
    .reviewer {
      display: flex; align-items: center; gap: 12px;
    }
    .reviewer-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800; color: white;
      flex-shrink: 0;
    }
    .reviewer-name { font-size: 14px; font-weight: 700; color: var(--ink); }
    .reviewer-meta { font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }
    .google-badge { margin-left: auto; }

    /* ─────────────────────────────────────────
       HOW IT WORKS
    ───────────────────────────────────────── */
    #how { padding: 120px 0; background: var(--light); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 32px; position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 36px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
      height: 2px;
      background: linear-gradient(90deg, var(--peach), var(--coral));
      opacity: 0.35;
    }
    .step-card { text-align: center; position: relative; z-index: 1; }
    .step-num {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--grad);
      color: white;
      font-family: 'Fraunces', serif; font-size: 26px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 10px 28px rgba(255,107,53,0.3);
      transition: transform 0.3s;
    }
    .step-card:hover .step-num { transform: scale(1.1); }
    .step-title { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
    .step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* ─────────────────────────────────────────
       CONTACT / CTA
    ───────────────────────────────────────── */
    #contact { padding: 120px 0; background: white; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 64px; align-items: start;
    }
    .contact-info h2 { margin-bottom: 20px; }
    .contact-info > p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 40px; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 20px; border-radius: 16px;
      border: 1.5px solid rgba(0,0,0,0.07);
      background: white;
      transition: border-color 0.25s, transform 0.25s;
    }
    .contact-item:hover { border-color: rgba(255,107,53,0.3); transform: translateX(4px); }
    .contact-item-icon {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--light);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .contact-item-title { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 4px; }
    .contact-item-val { font-size: 15px; font-weight: 600; color: var(--ink); }
    .contact-item-val a { color: var(--ink); text-decoration: none; }
    .contact-item-val a:hover { color: var(--orange); }

    /* Map card */
    .map-card {
      border-radius: 24px; overflow: hidden;
      border: 1.5px solid rgba(0,0,0,0.08);
      box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    }
    .map-card iframe { display: block; }
    .map-footer {
      padding: 16px 20px;
      display: flex; align-items: center; justify-content: space-between;
      background: var(--light);
    }
    .map-footer span { font-size: 13px; font-weight: 700; color: var(--ink2); }
    .map-footer a {
      font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
      color: var(--orange); text-decoration: none;
    }

    /* ─────────────────────────────────────────
       CTA BANNER
    ───────────────────────────────────────── */
    .cta-banner {
      margin: 0 32px 80px;
      background: var(--grad);
      border-radius: 32px;
      padding: 64px 72px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 40px; flex-wrap: wrap;
      overflow: hidden; position: relative;
      box-shadow: 0 24px 64px rgba(255,107,53,0.3);
    }
    .cta-blob {
      position: absolute;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
    }
    .cta-content { position: relative; z-index: 1; }
    .cta-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 900;
      color: white; line-height: 1.1;
      margin-bottom: 12px;
    }
    .cta-sub { font-size: 16px; color: rgba(255,255,255,0.8); }
    .cta-btns { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-white {
      background: white;
      color: var(--orange);
      padding: 16px 36px;
      border-radius: 50px;
      font-size: 14px; font-weight: 800;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.18); }
    .btn-ghost-white {
      border: 2px solid rgba(255,255,255,0.6);
      color: white;
      padding: 14px 34px;
      border-radius: 50px;
      font-size: 14px; font-weight: 700;
      text-decoration: none;
      transition: background 0.2s;
    }
    .btn-ghost-white:hover { background: rgba(255,255,255,0.15); }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      background: var(--ink);
      color: rgba(255,255,255,0.7);
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 52px;
    }
    .footer-brand p { font-size: 14px; line-height: 1.8; margin: 16px 0 24px; max-width: 260px; }
    .footer-rating { display: flex; align-items: center; gap: 8px; }
    .footer-stars { color: #FFC107; font-size: 14px; }
    .footer-rating-text { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.4); }
    .footer-logo-text { font-family: 'Fraunces', serif; font-weight: 800; font-size: 20px; color: white; }
    .footer-col h4 {
      font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a {
      font-size: 14px; color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--peach); }
    .footer-bottom {
      padding-top: 28px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .social-links { display: flex; gap: 12px; }
    .social-link {
      width: 38px; height: 38px; border-radius: 50%;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      font-size: 16px;
      transition: background 0.2s, transform 0.2s;
    }
    .social-link:hover { background: var(--orange); transform: translateY(-2px); }

    /* WhatsApp Float */
    .wa-float {
      position: fixed; bottom: 28px; right: 28px; z-index: 200;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 28px rgba(37,211,102,0.45);
      transition: transform 0.3s, box-shadow 0.3s;
      text-decoration: none;
    }
    .wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }
    .wa-float svg { width: 28px; height: 28px; }

    /* ─── RESPONSIVE ────────────────────────── */
    @media (max-width: 1024px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid::before { display: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; padding: 40px 0 60px; gap: 48px; }
      .hero-right { order: -1; height: 360px; }
      .hero-blob-main { width: 340px; height: 300px; }
      .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .product-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .cta-banner { margin: 0 16px 60px; padding: 40px 32px; flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .rating-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
      .rating-divider { display: none; }
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; }
    }
    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 24px; }
    }
 