  :root {
    --blue: #0066FF;
    --blue-dark: #0044CC;
    --blue-light: #4D9FFF;
    --cyan: #00D4FF;
    --bg: #080C14;
    --bg2: #0D1424;
    --bg3: #111A2E;
    --surface: #162038;
    --border: rgba(0,102,255,0.2);
    --text: #E8F0FE;
    --muted: #6B80A8;
    --white: #ffffff;
    --success: #00E096;
    --warn: #FFB800;
  }


  * { margin: 0; padding: 0; box-sizing: border-box; }


  html { scroll-behavior: smooth; }


  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
  }


  /* ─── NOISE TEXTURE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }


  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 5%;
    background: rgba(8,12,20,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }


  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
  }


  .logo span { color: var(--cyan); }


  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }


  .nav-cta {
    background: var(--blue);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }


  .hamburger {
    display: none;
    flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--text); border-radius: 2px;
    transition: all 0.3s;
  }


  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 140px 5% 80px;
    position: relative;
    overflow: hidden;
  }


  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(0,102,255,0.15) 0%, transparent 60%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,212,255,0.08) 0%, transparent 50%);
  }


  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 80% 50%, black 30%, transparent 70%);
  }


  .hero-content { position: relative; z-index: 2; max-width: 620px; }


  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,102,255,0.15);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeUp 0.6s ease both;
  }


  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }


  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
  }


  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(54px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    animation: fadeUp 0.6s 0.1s ease both;
  }


  .hero h1 em {
    font-style: normal;
    -webkit-text-stroke: 1px var(--blue-light);
    color: transparent;
    display: block;
  }


  .hero p {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    animation: fadeUp 0.6s 0.2s ease both;
  }


  .hero-btns {
    margin-top: 40px;
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }


  .btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,102,255,0.4); }


  .btn-outline {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-outline:hover { border-color: var(--blue); color: var(--blue-light); }


  .hero-stats {
    margin-top: 56px;
    display: flex; gap: 40px;
    animation: fadeUp 0.6s 0.4s ease both;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1;
  }
  .stat-num span { color: var(--cyan); }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; letter-spacing: 0.5px; }


  .hero-car {
    position: absolute;
    right: -2%;
    bottom: 10%;
    width: 52%;
    max-width: 700px;
    opacity: 0;
    animation: slideInRight 1s 0.3s ease forwards;
  }


  @keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
  }


  /* SVG Car */
  .car-wrap {
    position: relative;
  }


  .water-drops {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
  }


  .drop {
    animation: drip linear infinite;
    transform-origin: top center;
  }


  @keyframes drip {
    0% { transform: translateY(-10px); opacity: 1; }
    100% { transform: translateY(80px); opacity: 0; }
  }


  /* ─── SECTION SHARED ─── */
  section { padding: 100px 5%; position: relative; }


  .section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 12px;
  }


  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
  }


  .section-sub {
    font-size: 16px;
    color: var(--muted);
    margin-top: 12px;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
  }


  /* ─── SERVICES ─── */
  #layanan { background: var(--bg2); }


  .services-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }


  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    /* group: true; */
  }


  .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,255,0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }


  .service-card:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
  .service-card:hover::before { opacity: 1; }


  .service-popular {
    position: absolute; top: 16px; right: 16px;
    background: var(--blue);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
  }


  .service-icon {
    width: 52px; height: 52px;
    background: rgba(0,102,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: background 0.3s;
  }
  .service-card:hover .service-icon { background: rgba(0,102,255,0.3); }


  .service-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 8px;
  }


  .service-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
  }


  .service-includes {
    list-style: none;
    margin-bottom: 24px;
  }


  .service-includes li {
    font-size: 12px;
    color: var(--muted);
    padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
  }


  .service-includes li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
  }


  .service-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }


  .service-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 1px;
  }


  .service-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
  }


  .btn-book-service {
    background: rgba(0,102,255,0.2);
    color: var(--blue-light);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 100;              /* Pastikan tombol di atas elemen lain */
    pointer-events: auto !important; /* Paksa tombol bisa diklik */
    display: inline-block;     /* Pastikan tombol punya dimensi klik */
  }
  .btn-book-service:hover { background: var(--blue); color: #fff; border-color: var(--blue); }


  /* ─── Service Duration Badge ── */
  .service-duration {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 2px;
  }






  /* ─── HOW IT WORKS ─── */
  .steps-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
  }


  .steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  }


  .step {
    text-align: center;
    padding: 0 20px;
    position: relative;
  }


  .step-num {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--blue-light);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }


  .step:hover .step-num {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 0 30px rgba(0,102,255,0.5);
  }


  .step-icon { font-size: 24px; }
  .step-title { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 8px; }
  .step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }


  /* ─── BOOKING FORM ─── */
  #booking {
    background: var(--bg3);
  }


  .booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 56px;
    align-items: start;
  }


  .booking-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 16px;
  }


  .booking-info p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; }


  .contact-items { display: flex; flex-direction: column; gap: 16px; }
  .contact-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
  }
  .contact-item .ci-icon { font-size: 20px; }
  .contact-item .ci-label { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; text-transform: uppercase; }
  .contact-item .ci-value { font-size: 14px; color: var(--white); font-weight: 500; }


  .booking-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
  }


  .form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 28px;
  }


  .form-group { margin-bottom: 18px; }


  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }


  label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }


  input, select, textarea {
    width: 100%;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--white);
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s;
    outline: none;
    appearance: none;
  }


  input:focus, select:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
  }


  input::placeholder, textarea::placeholder { color: rgba(107,128,168,0.6); }


  select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B80A8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }


  option { background: var(--bg2); }


  textarea { resize: none; }


  .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
  }


  .btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
  }


  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,102,255,0.5); }
  .btn-submit:hover::after { opacity: 1; }


  /* Success message */
  .success-msg {
    display: none;
    text-align: center;
    padding: 32px;
  }


  .success-msg .check { font-size: 48px; margin-bottom: 16px; }
  .success-msg h3 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--success); letter-spacing: 1px; }
  .success-msg p { color: var(--muted); font-size: 14px; margin-top: 8px; }


  /* ─── TESTIMONIALS ─── */
  #testimoni { background: var(--bg); }


  .testimonials-grid {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }


  .testi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
  }


  .testi-card:hover { transform: translateY(-3px); border-color: rgba(0,102,255,0.4); }


  .testi-stars { color: var(--warn); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }


  .testi-text { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 20px; font-weight: 300; }


  .testi-footer { display: flex; align-items: center; gap: 12px; }


  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
  }


  .testi-name { font-weight: 600; font-size: 14px; color: var(--white); }
  .testi-sub { font-size: 12px; color: var(--muted); }


  /* ─── FOOTER ─── */
  footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    padding: 60px 5% 32px;
  }


  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
  }


  .footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; max-width: 280px; }


  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
  }


  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { text-decoration: none; font-size: 13px; color: var(--muted); transition: color 0.2s; }
  .footer-col a:hover { color: var(--blue-light); }


  .footer-hours li { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
  .footer-hours li:last-child { border-bottom: none; }
  .footer-hours .day { color: var(--text); }


  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap; gap: 12px;
  }


  .footer-bottom p { font-size: 12px; color: var(--muted); }


  .social-links { display: flex; gap: 12px; }
  .social-links a {
    width: 36px; height: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .social-links a:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); }


  /* ─── MODAL ─── */
  .modal-bg {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    align-items: center; justify-content: center;
    padding: 20px;
  }


  .modal-bg.active { display: flex; }


  .modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
  }


  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }


  .modal-close {
    position: absolute; top: 16px; right: 16px;
    background: none; border: none; color: var(--muted);
    font-size: 22px; cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px; transition: all 0.2s;
  }
  .modal-close:hover { background: rgba(255,255,255,0.05); color: var(--white); }


  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }


  .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.js-ready {
    opacity: 0;
    transform: translateY(30px);
  }
  .fade-up.visible { opacity: 1 !important; transform: translateY(0) !important; }


  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .hero-car { width: 45%; bottom: 5%; }
    .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }


  @media (max-width: 768px) {
    nav { padding: 16px 5%; }
    .nav-links { display: none; }
    .hamburger { display: flex; }


    .nav-links.open {
      display: flex; flex-direction: column;
      position: fixed; inset: 0; top: 64px;
      background: rgba(8,12,20,0.97);
      backdrop-filter: blur(20px);
      align-items: center; justify-content: center;
      gap: 32px; z-index: 99;
    }
    .nav-links.open a { font-size: 20px; }


    .hero { padding: 120px 5% 240px; }
    .hero-car { width: 90%; right: 5%; bottom: 0; }


    .steps-grid::before { display: none; }
    .steps-grid { grid-template-columns: 1fr; gap: 32px; }
    .step { text-align: left; display: flex; align-items: flex-start; gap: 20px; }
    .step-num { flex-shrink: 0; margin: 0; }


    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }


  @media (max-width: 480px) {
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .booking-form { padding: 28px 20px; }
    .modal { padding: 28px 20px; }
  }


  /* Scrollbar */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }


  /* ─── SERVICE SKELETON LOADER ──────────────────── */
  @keyframes shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
  }


  .service-skeleton {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
  }


  .service-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.04) 50%,
      transparent 100%
    );
    background-size: 600px 100%;
    animation: shimmer 1.6s infinite linear;
  }


  .service-skeleton::before {
    content: '';
    position: absolute;
    top: 32px; left: 28px;
    right: 28px; bottom: 32px;
    background:
      /* icon box */
      linear-gradient(var(--bg3) 52px, transparent 52px) 0 0 / 52px 52px no-repeat,
      /* title line */
      linear-gradient(var(--bg3) 20px, transparent 20px) 0 88px / 60% 20px no-repeat,
      /* desc line 1 */
      linear-gradient(var(--bg3) 12px, transparent 12px) 0 130px / 90% 12px no-repeat,
      /* desc line 2 */
      linear-gradient(var(--bg3) 12px, transparent 12px) 0 150px / 70% 12px no-repeat,
      /* feature 1 */
      linear-gradient(var(--bg3) 10px, transparent 10px) 0 190px / 65% 10px no-repeat,
      /* feature 2 */
      linear-gradient(var(--bg3) 10px, transparent 10px) 0 210px / 55% 10px no-repeat,
      /* feature 3 */
      linear-gradient(var(--bg3) 10px, transparent 10px) 0 230px / 70% 10px no-repeat,
      /* price */
      linear-gradient(var(--bg3) 22px, transparent 22px) 0 calc(100% - 10px) / 40% 22px no-repeat,
      /* button */
      linear-gradient(var(--bg3) 34px, transparent 34px) calc(100%) calc(100% - 5px) / 30% 34px no-repeat;
  }