 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background: #f2f4f8;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 5px 5px 5px 5px;
      min-height: 100vh;
    }

    .container {
      max-width: 540px;
      width: 100%;
      background: white;
      border-radius: 10px;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      margin: 0 auto;
    }

    .header {
      background: linear-gradient(145deg, #7b2ff7 0%, #a855f7 55%, #e74c8b 100%);
      padding: 24px 20px 20px 20px;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .header-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    .header-title {
      flex: 1;
    }

    .header-title h1 {
      font-size: 26px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .header-title h1 i {
      font-size: 26px;
      margin-right: 6px;
    }

    .header-title p {
      font-size: 16px;
      font-weight: 600;
      margin: 5px 0 8px 0;
    }

    .header-title .sub {
      font-size: 13px;
      font-weight: 400;
      opacity: 0.92;
      line-height: 1.35;
    }

    .header-img {
      position: absolute;
      bottom: -15px;
      right: 10px;
      width: 200px;
      z-index: 1;
      opacity: 0.9;
      pointer-events: none;
    }

    .header-img img {
      width: 100%;
      height: auto;
      border-radius: 5px;
      object-fit: cover;
      transform: rotate(6deg);
      box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
      border: 2px solid rgba(255,255,255,0.3);
    }

    .floating-icons {
      position: absolute;
      top: 12px;
      right: 12px;
      display: flex;
      gap: 8px;
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(3px);
      padding: 5px 12px;
      border-radius: 60px;
      z-index: 3;
    }

    .floating-icons i {
      font-size: 18px;
      color: white;
      text-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      background: white;
      padding: 16px 12px;
      border-radius: 28px;
      margin: 18px 16px 0 16px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
      gap: 12px;
      position: relative;
      z-index: 2;
    }

    .badge-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 10px;
      font-weight: 700;
      color: #2c2c2c;
      width: 18%;
      min-width: 62px;
    }

    .badge-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      margin-bottom: 6px;
      font-size: 18px;
      box-shadow: 0 5px 8px rgba(0,0,0,0.1);
    }

    .badge-icon.purple { background: #9b59b6; }
    .badge-icon.pink { background: #e91e63; }
    .badge-icon.blue { background: #3b82f6; }
    .badge-icon.green { background: #22c55e; }
    .badge-icon.yellow { background: #fbbf24; }

    .section-purple {
      background: #f3e8ff;
      margin: 18px 16px 0 16px;
      border-radius: 24px;
      padding: 16px;
      position: relative;
      overflow: hidden;
    }

    .section-title-purple {
      background: #7b2ff7;
      display: inline-block;
      padding: 6px 18px 6px 22px;
      border-radius: 40px;
      color: white;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 14px;
      margin-left: -8px;
      box-shadow: 0 4px 8px rgba(123,47,247,0.2);
    }

    .section-title-purple i {
      margin-right: 8px;
    }

    .purple-content {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .purple-left {
      flex: 2;
      min-width: 170px;
    }

    .purple-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 13.5px;
      color: #1f1f1f;
      font-weight: 500;
    }

    .purple-list-item i {
      color: #7b2ff7;
      font-size: 20px;
      width: 28px;
      text-align: center;
    }

    .purple-right {
      position: absolute;
      bottom: 10px;
      right: 10px;
      width: 130px;
      opacity: 0.75;
      pointer-events: none;
      z-index: 1;
    }

    .phone-mockup {
      width: 100%;
      height: auto;
      border-radius: 15px;
      background: #111;
      overflow: hidden;
      box-shadow: 0 12px 18px rgba(0,0,0,0.2);
      border: 2px solid white;
    }

    .phone-mockup img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .purple-note {
      font-size: 10px;
      text-align: center;
      margin-top: 10px;
      color: #2d1b4e;
      font-weight: 600;
      background: rgba(123,47,247,0.15);
      padding: 6px 8px;
      border-radius: 30px;
      width: 100%;
      position: relative;
      z-index: 2;
      backdrop-filter: blur(2px);
    }

    .purple-note i {
      font-size: 14px;
      color: #7b2ff7;
      margin-right: 4px;
    }

    .section-green {
      background: #f0fdf4;
      margin: 18px 16px 0 16px;
      border-radius: 24px;
      padding: 16px;
      position: relative;
      overflow: hidden;
    }

    .section-title-green {
      background: #22c55e;
      display: inline-block;
      padding: 6px 18px 6px 22px;
      border-radius: 40px;
      color: white;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 14px;
      margin-left: -8px;
    }

    .green-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .green-left {
      flex: 2;
    }

    .green-check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      font-weight: 600;
      color: #14532d;
      margin-bottom: 12px;
    }

    .green-check-item i {
      color: #22c55e;
      font-size: 18px;
      width: 24px;
    }

    .green-right {
      position: absolute;
      bottom: 12px;
      right: 12px;
      width: 120px;
      opacity: 0.8;
      pointer-events: none;
      z-index: 1;
    }

    .green-right span img {
      width: 100%;
      border-radius: 12px;
      display: block;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.5);
    }

    .section-schedule {
      background: #faf5ff;
      margin: 18px 16px 0 16px;
      border-radius: 24px;
      padding: 16px;
      border: 1px solid #ede9fe;
    }

    .section-title-schedule {
      background: #7b2ff7;
      display: inline-block;
      padding: 6px 18px 6px 22px;
      border-radius: 40px;
      color: white;
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 16px;
      margin-left: -8px;
    }

    .schedule-grid {
      display: flex;
      justify-content: space-around;
      text-align: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .schedule-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
      background: #ffffffb3;
      padding: 12px 6px;
      border-radius: 30px;
    }

    .schedule-item i {
      font-size: 34px;
    }

    .schedule-item .morning { color: #fbbf24; }
    .schedule-item .afternoon { color: #fb923c; }
    .schedule-item .night { color: #3b82f6; }

    .schedule-item span {
      font-weight: 800;
      font-size: 14px;
    }

    .schedule-note {
      text-align: center;
      font-size: 12px;
      color: #4b5563;
      margin-top: 16px;
      font-weight: 500;
    }

    .section-requirements {
      background: #eff6ff;
      margin: 18px 16px 0 16px;
      border-radius: 24px;
      padding: 16px;
    }

    .section-title-req {
      background: #3b82f6;
      display: inline-block;
      padding: 6px 18px 6px 22px;
      border-radius: 40px;
      color: white;
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 14px;
      margin-left: -8px;
    }

    .req-row {
      display: flex;
      justify-content: space-around;
      text-align: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .req-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 12px 10px;
      border-radius: 32px;
      flex: 1;
      min-width: 90px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.02);
    }

    .req-item i {
      background: #3b82f6;
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .footer-red {
      background: #d92d4b;
      margin: 24px 16px 20px 16px;
      border-radius: 28px;
      padding: 16px;
      color: white;
      display: flex;
      align-items: center;
      gap: 14px;
      position: relative;
    }

    .footer-icon {
      font-size: 30px;
      background: white;
      color: #d92d4b;
      border-radius: 50%;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .footer-text {
      flex: 1;
    }

    .footer-text h4 {
      font-weight: 800;
      font-size: 16px;
      margin-bottom: 4px;
    }

    .footer-text p {
      font-size: 12px;
      opacity: 0.92;
      line-height: 1.35;
    }

    .footer-wa {
      background: white;
      color: #25d366;
      border-radius: 50%;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      flex-shrink: 0;
      transition: transform 0.2s;
      cursor: pointer;
    }

    .global-cta {
      position: fixed;
      bottom: 20px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: calc(100% - 40px);
      max-width: 440px;
      z-index: 1000;
      background: linear-gradient(95deg, #128C7E 0%, #25D366 100%);
      border-radius: 60px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(2px);
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.2s ease;
      text-decoration: none;
    }

    .global-cta-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .global-cta-icon {
      background: white;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #25D366;
    }

    .global-cta-text {
      display: flex;
      flex-direction: column;
    }

    .global-cta-text strong {
      font-size: 16px;
      font-weight: 800;
      color: white;
      letter-spacing: 0.5px;
    }

    .global-cta-text span {
      font-size: 12px;
      color: #e0f2e9;
      font-weight: 500;
    }

    .global-cta-arrow {
      background: rgba(255,255,255,0.3);
      border-radius: 40px;
      padding: 6px 14px;
      color: white;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .global-cta-arrow i {
      font-size: 14px;
    }

    @media (max-width: 450px) {
      body {
        padding: 12px 12px 90px 12px;
      }
      .header-title h1 {
        font-size: 22px;
      }
      .header-img {
        width: 170px;
        bottom: 10px;
        right: 15px;
      }
      .badge-item {
        width: auto;
        flex: 1 0 70px;
      }
      .purple-content {
        flex-direction: column;
      }
      .purple-left {
        width: 100%;
      }
      .purple-right {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        opacity: 1;
        margin-top: 16px;
        display: flex;
        justify-content: center;
        pointer-events: auto;
      }
      .phone-mockup {
        width: 110px;
        height: auto;
        margin: 0 auto;
      }
      .green-row {
        flex-direction: column;
      }
      .green-right {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        opacity: 1;
        margin-top: 12px;
        display: flex;
        justify-content: center;
        pointer-events: auto;
      }
      .green-right span img {
        max-width: 140px;
        margin: 0 auto;
      }
      .schedule-item {
        min-width: 95px;
      }
      .global-cta-text strong {
        font-size: 14px;
      }
      .global-cta-text span {
        font-size: 10px;
      }
    }

    @media (max-width: 380px) {
      .badge-item {
        font-size: 9px;
      }
      .purple-list-item {
        font-size: 12px;
      }
      .global-cta {
        padding: 10px 14px;
      }
      .global-cta-icon {
        width: 38px;
        height: 38px;
        font-size: 24px;
      }
      .global-cta-text strong {
        font-size: 13px;
      }
      .header-img {
        width: 150px;
        bottom: 15px;
        right: 10px;
      }
    }

    a, .footer-wa, .global-cta {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .footer-wa:active, .global-cta:active {
      transform: scale(0.97);
    }